diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-03 15:50:32 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-03 15:50:32 +0100 |
| commit | ea14b4942c5f260b8a647bec52b85d376f12066a (patch) | |
| tree | 30bafd021d0551f93c3d21362486ef955639f646 /src/image.h | |
| parent | 1594c96a327ae418b193d19d8d6c80b89cc74430 (diff) | |
separate code
Diffstat (limited to 'src/image.h')
| -rw-r--r-- | src/image.h | 21 |
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 |
