summaryrefslogtreecommitdiff
path: root/src/main/game/game.h
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-21 17:00:19 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-21 17:13:23 +0200
commit0e8e745f88617fe5933eb7981198ac24cb7b1ee4 (patch)
tree834d6414217ee9c4d073eb68cbe26ba9bb42c6b2 /src/main/game/game.h
parent25c0bda9ca1e436370a9e2a671d3195de0e90902 (diff)
downloadtris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.tar.gz
tris-0e8e745f88617fe5933eb7981198ac24cb7b1ee4.zip
Add the Cell struct
Diffstat (limited to 'src/main/game/game.h')
-rw-r--r--src/main/game/game.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/game/game.h b/src/main/game/game.h
index 0cb80e0..d59df85 100644
--- a/src/main/game/game.h
+++ b/src/main/game/game.h
@@ -22,10 +22,6 @@
#include "../util/list.h"
-typedef struct Cell {
- float left, right, top, bottom;
-} Cell;
-
typedef struct TrisGame {
int width, height;
list_t *cells;