示例#1
0
 public ItemBin()
 {
     Identifier = 0;
     Location   = new Coordinate();
 }
示例#2
0
 public ItemBin(int id, int x, int y)
 {
     Identifier = id;
     Location   = new Coordinate(x, y);
 }