diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/assets.c | 3 | ||||
-rw-r--r-- | src/assets.h | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/assets.c b/src/assets.c index b42dfae..a50b824 100644 --- a/src/assets.c +++ b/src/assets.c @@ -7,7 +7,8 @@ const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX] = { const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX] = { "heightmap.png", "mint.png", - "nickel.png" + "nickel.png", + "tree.png" }; void initAssets(Assets* assets) diff --git a/src/assets.h b/src/assets.h index f276088..0c6664c 100644 --- a/src/assets.h +++ b/src/assets.h @@ -4,7 +4,7 @@ #define ASSETS_H #define IMAGE_ASSET_COUNT 1 -#define TEXTURE_ASSET_COUNT 3 +#define TEXTURE_ASSET_COUNT 4 extern const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX]; extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX]; @@ -20,7 +20,8 @@ enum { enum { HEIGHT_MAP_TEXTURE, MINT_TEXTURE, - NICK_TEXTURE + NICK_TEXTURE, + TREE_TEXTURE }; typedef struct { |