diff options
Diffstat (limited to 'textures.h')
-rw-r--r-- | textures.h | 23 |
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 |