Index: 1 2 3 4... ----------------- | | | | | a ----------------- | | | | | b ----------------- | | | | | c ----------------- . | | | | | . ----------------- .
()
| 220 | It is called when the player enters the 'play' command. |
| 221 | """ |
| 222 | def play_game(): |
| 223 | |
| 224 | # MAP of the game |
| 225 | """ |
| 226 | Index: |
| 227 | 1 2 3 4... |
| 228 | ----------------- |
| 229 | | | | | | a |
| 230 | ----------------- |
| 231 | | | | | | b |
| 232 | ----------------- |
| 233 | | | | | | c |
| 234 | ----------------- . |
| 235 | | | | | | . |
| 236 | ----------------- . |
| 237 | """ |
| 238 | |
| 239 | setup_game() |
| 240 | |
| 241 | |
| 242 | # ---- Help Screen ---- # |
no test coverage detected