ModernUO/Scripts/Engines/MLQuests/Items/AsandosSatchel.cs
2018-09-14 08:41:38 -07:00

32 lines
598 B
C#

namespace Server.Items
{
public class AsandosSatchel : Backpack
{
[Constructible]
public AsandosSatchel()
{
Hue = Utility.RandomBrightHue();
DropItem( new SackFlour() );
DropItem( new Skillet() );
}
public AsandosSatchel( Serial serial )
: base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}