Adds assemblies config, fixes crash bugs. (#134)
This commit is contained in:
parent
0140eb73b4
commit
8ec166bcd0
3223 changed files with 191 additions and 191 deletions
|
|
@ -1,44 +0,0 @@
|
|||
namespace Server.Items
|
||||
{
|
||||
public 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)
|
||||
{
|
||||
}
|
||||
|
||||
public TanBook(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Deserialize(IGenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
|
||||
public override void Serialize(IGenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.Write(0); // version
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue