diff options
author | Schark <jordan@schark.online> | 2024-03-21 01:10:37 -0700 |
---|---|---|
committer | Schark <jordan@schark.online> | 2024-03-21 01:10:37 -0700 |
commit | 9963f71b09a919cb37631f6764a7dc1a5fa273f2 (patch) | |
tree | c6a4c645916083ef9ae79167554446a6c5cadfaa /height-map-display/src/sprites/loader.h | |
parent | af03f388cbcff795158ea8345b5c876470229e8b (diff) | |
download | gamedev-master.tar.gz gamedev-master.zip |
Diffstat (limited to '')
-rw-r--r-- | height-map-display/src/sprites/loader.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/height-map-display/src/sprites/loader.h b/height-map-display/src/sprites/loader.h new file mode 100644 index 0000000..5f3a35e --- /dev/null +++ b/height-map-display/src/sprites/loader.h @@ -0,0 +1,14 @@ +#ifndef LOADER_H +#define LOADER_H + +#include <GL/glew.h> + +typedef struct { + float x, y; + float width, height; + GLuint texture_id; +} Sprite; + +GLuint load_texture(const char* path); + +#endif |