コード例 #1
0
ファイル: GroundItem.java プロジェクト: Sundays211/VirtueRS3
 public GroundItem(int id, int amount, Tile tile, Player owner) {
   this(Item.create(id, amount), tile, owner);
 }
コード例 #2
0
ファイル: GroundItem.java プロジェクト: Sundays211/VirtueRS3
 public GroundItem(int id, int amount, Tile tile) {
   this(Item.create(id, amount), tile, null);
 }