summaryrefslogtreecommitdiff
path: root/src/main/engine/engine.c
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-22 11:30:56 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-22 11:33:56 +0200
commitcafc107481db061bf3c70aeee072843f06ff1e3a (patch)
treecbba4e8996907fe2c69f9b18b119239a8e4fe149 /src/main/engine/engine.c
parent0a47d6fd0d10d5ea049c68e42e373935e4a283ee (diff)
downloadtris-cafc107481db061bf3c70aeee072843f06ff1e3a.tar.gz
tris-cafc107481db061bf3c70aeee072843f06ff1e3a.zip
Move the Engine struct inside the header
Diffstat (limited to 'src/main/engine/engine.c')
-rw-r--r--src/main/engine/engine.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/engine/engine.c b/src/main/engine/engine.c
index ab19785..191f5c9 100644
--- a/src/main/engine/engine.c
+++ b/src/main/engine/engine.c
@@ -52,13 +52,6 @@ typedef struct Line {
float x1, y1, x2, y2;
} Line;
-typedef struct Engine {
- UI *ui;
- list_t *circles;
- void (*draw_frame)();
- float ortho_left, ortho_right, ortho_top, ortho_bottom;
-} Engine;
-
static Engine *engine;
/* FPS */