diff options
author | 2025-05-22 12:05:09 +0200 | |
---|---|---|
committer | 2025-05-22 12:05:09 +0200 | |
commit | d80ab578627dc00837a5e264d4f0164f2263ffa1 (patch) | |
tree | 8c15b559c58561e05a347d80e7d73e83c52186ce /src/main/engine/engine.h | |
parent | 47ab4de4487037b06b41744713f6a5012e119f46 (diff) | |
download | tris-d80ab578627dc00837a5e264d4f0164f2263ffa1.tar.gz tris-d80ab578627dc00837a5e264d4f0164f2263ffa1.zip |
Move lines inside Engine struct
Diffstat (limited to 'src/main/engine/engine.h')
-rw-r--r-- | src/main/engine/engine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/engine/engine.h b/src/main/engine/engine.h index f77fc4e..1e26f05 100644 --- a/src/main/engine/engine.h +++ b/src/main/engine/engine.h @@ -31,6 +31,7 @@ enum EngineInput { typedef struct { UI *ui; list_t *circles; + list_t *lines; void (*draw_frame)(); float ortho_left, ortho_right, ortho_top, ortho_bottom; Color *rendering_background; |