AvatarsConquest/Scripts/Items/Skill Items/Tinkering/SextantParts.cs

39 lines
No EOL
697 B
C#

using System;
using Server;
namespace Server.Items
{
[Flipable( 0x1059, 0x105A )]
public class SextantParts : Item
{
[Constructable]
public SextantParts() : this( 1 )
{
}
[Constructable]
public SextantParts( int amount ) : base( 0x1059 )
{
Stackable = true;
Amount = amount;
Weight = 2.0;
}
public SextantParts( 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();
}
}
}