From 37d0a75ea7b189f03e5481b4782a16f3d51aa955 Mon Sep 17 00:00:00 2001 From: nihilazo Date: Mon, 4 Apr 2022 11:10:13 +0100 Subject: [PATCH] make GameStates transparent for easier debugging --- main.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.rkt b/main.rkt index 02d3142..e5e9b94 100644 --- a/main.rkt +++ b/main.rkt @@ -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)