From a5b8ea449bbb6fe30a6bf27843eab1df6a21ccef Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 4 Jul 2025 08:06:42 -0600 Subject: Started getting walking on heightmap working --- src/assets.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/assets.h') 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; -- cgit v1.2.3