312 B
Executable file
312 B
Executable file
| title | date |
|---|---|
| Plans for a chess/taikyoku shogi/what have you engine | 2025-02-18 |
Game Loop
while not game.is_over():
game.display()
game.get_player_input() # returns starting and ending position
game.is_valid_move()
Gamestruct contains game state- Refactor to trait?