aboutsummaryrefslogtreecommitdiff
path: root/lib/init.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/init.h')
-rw-r--r--lib/init.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/init.h b/lib/init.h
new file mode 100644
index 0000000..5337013
--- /dev/null
+++ b/lib/init.h
@@ -0,0 +1,19 @@
+#ifndef inithell
+#define inithell
+
+#include <stdio.h>
+#include <stdbool.h>
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_ttf.h>
+
+typedef struct{
+ int width;
+ int height;
+ bool mousedown;
+ int mx;
+ int my;
+ TTF_Font *font;
+ SDL_Renderer *renderer;
+ OBJECT obj;
+} STUFFS;
+#endif