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