From f96ad3c93b9a5a74d2af2e9b8b4835a672a9875b Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 25 Jul 2025 00:06:55 -0600 Subject: Fixing things up for future thingies --- src/assets.h | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'src/assets.h') diff --git a/src/assets.h b/src/assets.h index 0c6664c..88345b1 100644 --- a/src/assets.h +++ b/src/assets.h @@ -3,29 +3,20 @@ #ifndef ASSETS_H #define ASSETS_H -#define IMAGE_ASSET_COUNT 1 -#define TEXTURE_ASSET_COUNT 4 +#define TEXTURE_ASSET_COUNT 3 -extern const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX]; extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX]; typedef int8_t AssetId; -// Image asset ids. -enum { - HEIGHT_MAP_IMAGE -}; - // Texture asset ids. enum { - HEIGHT_MAP_TEXTURE, MINT_TEXTURE, - NICK_TEXTURE, + NICKEL_TEXTURE, TREE_TEXTURE }; typedef struct { - Image images[IMAGE_ASSET_COUNT]; Texture textures[TEXTURE_ASSET_COUNT]; } Assets; -- cgit v1.2.3