ModernUO/Projects/UOContent/Items/Books/TanBook.cs
2021-08-17 22:38:48 -07:00

32 lines
701 B
C#

namespace Server.Items
{
[Serializable(0, false)]
public partial class TanBook : BaseBook
{
[Constructible]
public TanBook() : base(0xFF0)
{
}
[Constructible]
public TanBook(int pageCount, bool writable) : base(0xFF0, pageCount, writable)
{
}
[Constructible]
public TanBook(string title, string author, int pageCount, bool writable) : base(
0xFF0,
title,
author,
pageCount,
writable
)
{
}
// Intended for defined books only
public TanBook(bool writable) : base(0xFF0, writable)
{
}
}
}