Snakes and Ladder Directions:
Run the game on a Linux machine (make sure that gtkmm libraries are properly installed) with the command `./snakes <boardfile>`.
You'll need to make a board file, or download this board, to play snakes and ladders.
- 1. Create a text file in the same directory as the snakes executable.
- 2. Define the dimensions of the board with a single integer (maximum 10).
- 3. Define the snake and ladder locations as integer pairs 'a b'
- If 'a' is less than 'b', space 'a' is ladder from 'a' to 'b'.
- If 'a' is greater than 'b', space 'a' is a snake from 'a' to 'b'.
- 4. Save the text file and you are done.