make GameStates transparent for easier debugging

This commit is contained in:
Nico 2022-04-04 11:10:13 +01:00
parent a846b01be5
commit 37d0a75ea7
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
; grid is the grid
; player is the current player
; scores is a list of numbers for the score of each player.
(struct GameState (grid player scores))
(struct GameState (grid player scores) #:transparent)
; width and height of the playing grid.
(define GRID-WIDTH 6)