Exemple #1
0
 public CreatureObject(SerializationInfo info, StreamingContext ctxt)
     : base(info, ctxt)
 {
     this.inventory = (Inventory.Inventory)info.GetValue("inventory", typeof(Inventory.Inventory));
 }
Exemple #2
0
        //protected Skill skill;

        public CreatureObject()
        {
            this.inventory = new Inventory.Inventory();
        }