From cafc107481db061bf3c70aeee072843f06ff1e3a Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 22 May 2025 11:30:56 +0200 Subject: Move the Engine struct inside the header --- src/main/engine/engine.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/main/engine/engine.c') 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 */ -- cgit v1.2.3