diff options
author | riton <riton@riton.home> | 2025-03-29 21:37:46 +0300 |
---|---|---|
committer | riton <riton@riton.home> | 2025-03-29 21:37:46 +0300 |
commit | 1b6ecc22e77b7aa1fee16420b041c1dea1925052 (patch) | |
tree | 6816b0d3ebcfa30492371233fcce253ef5275f31 /textures.c |
Diffstat (limited to 'textures.c')
-rw-r--r-- | textures.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/textures.c b/textures.c new file mode 100644 index 0000000..52a745b --- /dev/null +++ b/textures.c @@ -0,0 +1,23 @@ +#include "textures.h" + +Texture2D textures[T_COUNT]; + +Texture2D load_texture(const char *path){ + char buf[128]; + snprintf(buf, 128, ASSET_ROOT "%s", path); + return LoadTexture(buf); +} + +void load_textures(){ + textures[T_PLAYER] = load_texture("8-dir.png"); + textures[T_GRASS] = load_texture("grass_tiles.png"); + textures[T_DIRT] = load_texture("dirt-path.png"); + textures[T_TOWER] = load_texture("tower.png"); + textures[T_SKELETON_MOVE] = load_texture("skeleton1/movement.png"); +} + +void unload_textures(){ + for (size_t i = 0; i < T_COUNT; i++){ + UnloadTexture(textures[i]); + } +} |