コード例 #1
0
ファイル: CreatureObject.cs プロジェクト: Gothen111/2DWorld
 //protected Skill skill;
 public CreatureObject()
 {
     this.inventory = new Inventory.Inventory();
 }
コード例 #2
0
ファイル: CreatureObject.cs プロジェクト: Gothen111/2DWorld
 public CreatureObject(SerializationInfo info, StreamingContext ctxt)
     : base(info, ctxt)
 {
     this.inventory = (Inventory.Inventory)info.GetValue("inventory", typeof(Inventory.Inventory));
 }
コード例 #3
0
 public UpdateCreatureInventoryMessage(int _Id, Inventory _Inventory)
 {
     this.MessageTime = NetTime.Now;
     this.Id = _Id;
     this.Inventory = _Inventory;
 }