summaryrefslogtreecommitdiff
path: root/src/main/engine/ui/ui.h
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-19 15:57:13 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2025-05-19 15:58:04 +0200
commit73195399de0a6b5de27a838bba2daedc8ff2ae65 (patch)
tree4b2906c08d94af5eda8e4d778b3d973ff78e443d /src/main/engine/ui/ui.h
parentbc803cb0a6d7095a45eec4413c55dd113c0eb659 (diff)
downloadtris-73195399de0a6b5de27a838bba2daedc8ff2ae65.tar.gz
tris-73195399de0a6b5de27a838bba2daedc8ff2ae65.zip
Add reference to UI in the Engine structure
Diffstat (limited to 'src/main/engine/ui/ui.h')
-rw-r--r--src/main/engine/ui/ui.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main/engine/ui/ui.h b/src/main/engine/ui/ui.h
index 2cb8d32..03d5913 100644
--- a/src/main/engine/ui/ui.h
+++ b/src/main/engine/ui/ui.h
@@ -20,10 +20,7 @@
#ifndef __UI_H__
#define __UI_H__
-typedef struct UI {
- int width;
- int height;
-} UI;
+#include "types.h"
UI *ui_init(int w, int h);
void ui_loop(void);