Beispiel #1
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            Type = (HaochisPigmentType)reader.ReadInt();
        }
Beispiel #2
0
 public HaochisPigment(HaochisPigmentType type)
     : this(type, 50)
 {
 }
Beispiel #3
0
 public HaochisPigment(HaochisPigmentType type, int uses)
     : base(uses)
 {
     Weight = 1.0;
     Type   = type;
 }
Beispiel #4
0
 public HoachisPigmentInfo(HaochisPigmentType type, int hue, int loc)
 {
     Type         = type;
     Hue          = hue;
     Localization = loc;
 }