#ifndef ASSET_LOADER_H #define ASSET_LOADER_H #include #include 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