Exemple #1
0
        /*
         *  The PlaceShip method has the player place the specified
         *  ship type on its board with the given coordinates
         */

        public void PlaceShip(ShipType type, Coordinate[] coords)
        {
            board.PlaceShip(type, coords);
        }