32 lines
711 B
C#
32 lines
711 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0, false)]
|
|
public partial class BrownBook : BaseBook
|
|
{
|
|
[Constructible]
|
|
public BrownBook() : base(0xFEF)
|
|
{
|
|
}
|
|
|
|
[Constructible]
|
|
public BrownBook(int pageCount, bool writable) : base(0xFEF, pageCount, writable)
|
|
{
|
|
}
|
|
|
|
[Constructible]
|
|
public BrownBook(string title, string author, int pageCount, bool writable) : base(
|
|
0xFEF,
|
|
title,
|
|
author,
|
|
pageCount,
|
|
writable
|
|
)
|
|
{
|
|
}
|
|
|
|
// Intended for defined books only
|
|
public BrownBook(bool writable) : base(0xFEF, writable)
|
|
{
|
|
}
|
|
}
|
|
}
|