Beispiel #1
0
 public ItemInventory(int id, Id.TypeItem type)
 {
     this.id   = id;
     this.type = type;
 }
Beispiel #2
0
 public ItemInventory(int id, int count, Id.TypeItem type)
 {
     this.count = count;
     this.id    = id;
     this.type  = type;
 }