ShipGame/README.md

10 lines
455 B
Markdown
Raw Normal View History

2022-04-05 12:03:44 -04:00
# ShipGame
2022-06-25 18:01:35 -04:00
ShipGame is a Battleship-like game for two players. This code provides
a backend for the game written in Python.
2022-04-05 12:22:24 -04:00
Each player has a 10x10 grid on which they place their ships. On their
turn, the player fires a torpedo at a square on their opponents grid.
Player 'first' gets the first turn, after which the players alternate. A
ship is sunk when all of its squares have been hit. A player wins when
2022-06-25 18:01:35 -04:00
all of their opponents ships have been sunk.