From dc9d30ee5ee98f0f4aa024385ce0516fef63305b Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 22 May 2025 00:25:09 +0200 Subject: Move the next sign attribute inside 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 d59df85..b90c5fe 100644 --- a/src/main/game/game.h +++ b/src/main/game/game.h @@ -25,6 +25,7 @@ typedef struct TrisGame { int width, height; list_t *cells; + char sign; /* x = cross and o = circle */ } TrisGame; TrisGame *game_init(int width, int height); -- cgit v1.2.3