summaryrefslogtreecommitdiff
path: root/textures.h
diff options
context:
space:
mode:
authorriton <riton@riton.home>2025-03-29 21:37:46 +0300
committerriton <riton@riton.home>2025-03-29 21:37:46 +0300
commit1b6ecc22e77b7aa1fee16420b041c1dea1925052 (patch)
tree6816b0d3ebcfa30492371233fcce253ef5275f31 /textures.h
init repoHEADmaster
Diffstat (limited to 'textures.h')
-rw-r--r--textures.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/textures.h b/textures.h
new file mode 100644
index 0000000..01b8873
--- /dev/null
+++ b/textures.h
@@ -0,0 +1,23 @@
+#ifndef ASSET_LOADER_H
+#define ASSET_LOADER_H
+
+#include <raylib.h>
+#include <stdio.h>
+
+enum texture_enum {
+ T_PLAYER,
+ T_GRASS,
+ T_DIRT,
+ T_TOWER,
+ T_SKELETON_MOVE,
+ T_COUNT
+};
+
+extern Texture2D textures[T_COUNT];
+
+#define ASSET_ROOT "asset/"
+Texture2D load_texture(const char *path);
+void load_textures();
+void unload_textures();
+
+#endif