Esempio n. 1
0
 public GroundItem(int id, int amount, Tile tile, Player owner) {
   this(Item.create(id, amount), tile, owner);
 }
Esempio n. 2
0
 public GroundItem(int id, int amount, Tile tile) {
   this(Item.create(id, amount), tile, null);
 }