summaryrefslogtreecommitdiff
path: root/height-map-display/src/sprites/loader.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--height-map-display/src/sprites/loader.h14
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