示例#1
0
 public Ship(int posX, int posY, int size, bool horizontal, Map map)
 {
     this.posX = posX;
     this.posY = posY;
     this.size = size;
     this.isHorizontal = horizontal;
     this.map = map;
 }