ModernUO/Scripts/Holiday Stuff/Halloween/2012/Items/PorcelainMask.cs
Kamron Batman 20ae1b3989
Fixes lots more spelling errors (#5)
* Renames constructable to constructible
* Fixes project references.
* Fixes BaseEquippableLight file name
* Replaces payed with paid.
* Fixes various other spelling errors
2018-02-20 16:01:41 -08:00

35 lines
658 B
C#

using System;
using Server;
namespace Server.Items.Holiday
{
public class PaintedPorcelainMask : BasePaintedMask
{
public override string MaskName { get { return "Porcelain Mask"; } }
[Constructible]
public PaintedPorcelainMask()
: base( 0x4BA7 )
{
}
public PaintedPorcelainMask( Serial serial )
: base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( ( int )1 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}