summaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
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