Exemplo n.º 1
0
		public override void Deserialize( GenericReader reader )
		{
			base.Deserialize( reader );

			int version = reader.ReadInt();

			switch ( version )
			{
				case 0:
				{
					m_Type = (MoonstoneType)reader.ReadInt();

					break;
				}
			}
		}
Exemplo n.º 2
0
		public Moonstone( MoonstoneType type ) : base( 0xF8B )
		{
			Weight = 1.0;
			m_Type = type;
		}
Exemplo n.º 3
0
 public Moonstone(MoonstoneType type)
     : base(0xF8B)
 {
     this.Weight = 1.0;
     this.m_Type = type;
 }
Exemplo n.º 4
0
 public Moonstone(MoonstoneType type) : base(0xF8B)
 {
     Weight = 1.0;
     m_Type = type;
 }
Exemplo n.º 5
0
 public Moonstone(MoonstoneType type)
     : base(0xF8B)
 {
     this.Weight = 1.0;
     this.m_Type = type;
 }
Exemplo n.º 6
0
 public Moonstone(MoonstoneType type) : base(0xF8B)
 {
     Weight    = 1.0;
     m_Type    = type;
     ItemValue = ItemValue.Common;
 }
Exemplo n.º 7
0
		public Moonstone( MoonstoneType type ) : base( 0xF8B )
		{
			Weight = 1.0;
			m_Type = type;
			ItemValue = ItemValue.Common;
		}