diff options
author | 2025-05-22 00:01:51 +0200 | |
---|---|---|
committer | 2025-05-22 00:01:51 +0200 | |
commit | c07d2adb16532691e22a34d11ad87b56a4dc1a89 (patch) | |
tree | 3009daf2f2e2a336912305a3735c166969914450 /src/main/game/cell.h | |
parent | 8d3d0a98d71181d5f65b4f08d40976a9824ba68a (diff) | |
download | tris-c07d2adb16532691e22a34d11ad87b56a4dc1a89.tar.gz tris-c07d2adb16532691e22a34d11ad87b56a4dc1a89.zip |
Change the logic on drawing signs
Diffstat (limited to 'src/main/game/cell.h')
-rw-r--r-- | src/main/game/cell.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/game/cell.h b/src/main/game/cell.h index 000edfb..9a0a213 100644 --- a/src/main/game/cell.h +++ b/src/main/game/cell.h @@ -24,6 +24,7 @@ typedef struct Cell { float left, right, top, bottom; + float cx, cy; bool filled; } Cell; |