summaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-03-03 15:50:32 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-03-03 15:50:32 +0100
commitea14b4942c5f260b8a647bec52b85d376f12066a (patch)
tree30bafd021d0551f93c3d21362486ef955639f646 /src/image.h
parent1594c96a327ae418b193d19d8d6c80b89cc74430 (diff)
separate code
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h
new file mode 100644
index 0000000..3906132
--- /dev/null
+++ b/src/image.h
@@ -0,0 +1,21 @@
+#ifndef INCLUDE_IMAGE
+#define INCLUDE_IMAGE
+
+#ifndef WIN32_LEAN_AND_MEAN
+#define WIN32_LEAN_AND_MEAN
+#endif
+#include <windows.h>
+#include <GL/GL.h>
+#include <tchar.h>
+
+typedef struct t_ts_image {
+ GLuint id;
+ int width;
+ int height;
+} ts_image;
+
+extern ts_image img_logo;
+
+void ts_load_images();
+
+#endif \ No newline at end of file