예제 #1
0
파일: Player.cs 프로젝트: jpx/blazera
 public Player()
     : base()
 {
     Inventory = new Inventory();
 }
예제 #2
0
파일: Player.cs 프로젝트: jpx/blazera
 public Player(Player copy)
     : base(copy)
 {
     Inventory = new Inventory(copy.Inventory);
 }
예제 #3
0
 public Inventory(Inventory copy)
 {
     Items = new Dictionary<Item, ItemQuantity>(copy.Items);
 }