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