From d69c230773d63f33dccf5425c6f789fc2f447dab Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 22 May 2025 00:28:31 +0200 Subject: Move the 'moves' attribute inside the TrisGame struct --- src/main/game/game.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/game/game.h') diff --git a/src/main/game/game.h b/src/main/game/game.h index b90c5fe..6b9231c 100644 --- a/src/main/game/game.h +++ b/src/main/game/game.h @@ -26,6 +26,7 @@ typedef struct TrisGame { int width, height; list_t *cells; char sign; /* x = cross and o = circle */ + int moves; } TrisGame; TrisGame *game_init(int width, int height); -- cgit v1.2.3