diff options
author | nathan <nathansmith@disroot.org> | 2025-07-04 14:06:42 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-04 14:06:42 +0000 |
commit | a5b8ea449bbb6fe30a6bf27843eab1df6a21ccef (patch) | |
tree | 1be8416daa7a089b058a351bf8abd29f636c09c5 /src/assets.h | |
parent | 2b2b69ee31f00aa46ab6baa967e12437ce7334d1 (diff) | |
download | FindThings-a5b8ea449bbb6fe30a6bf27843eab1df6a21ccef.tar.gz FindThings-a5b8ea449bbb6fe30a6bf27843eab1df6a21ccef.tar.bz2 FindThings-a5b8ea449bbb6fe30a6bf27843eab1df6a21ccef.zip |
Started getting walking on heightmap working
Diffstat (limited to 'src/assets.h')
-rw-r--r-- | src/assets.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/assets.h b/src/assets.h index c5fb7ac..43c4b43 100644 --- a/src/assets.h +++ b/src/assets.h @@ -9,7 +9,7 @@ extern const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX]; extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX]; -typedef int8_t Assetid; +typedef int8_t AssetId; // Image asset ids. enum { @@ -21,7 +21,7 @@ enum { HEIGHT_MAP_TEXTURE }; -typedef struct Assets { +typedef struct { Image images[IMAGE_ASSET_COUNT]; Texture textures[TEXTURE_ASSET_COUNT]; } Assets; |