diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-09-21 21:28:50 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-09-21 21:28:50 -0600 |
commit | ff2c529dda20dba1ea7ef21f46703d59fb49178b (patch) | |
tree | 306f7b2749b4a7349f7dd2a505cd8b41c75942f9 /src/assets.h | |
parent | 0387c05d7d4b784b91ea35b88caa12c4fc9fd6d3 (diff) |
Better looking gyro
Diffstat (limited to 'src/assets.h')
-rw-r--r-- | src/assets.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/assets.h b/src/assets.h index ed842a6..beeb672 100644 --- a/src/assets.h +++ b/src/assets.h @@ -5,8 +5,8 @@ #define ASSET_PATH_MAX 255 -#define TEXTURE_ASSET_COUNT 3 -#define MODEL_ASSET_COUNT 9 +#define TEXTURE_ASSET_COUNT 4 +#define MODEL_ASSET_COUNT 10 // Paths to assets. extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][ASSET_PATH_MAX]; @@ -18,7 +18,8 @@ typedef int32_t AssetId; enum { ICON_ASSET, ICON128_ASSET, - ICON64_ASSET + ICON64_ASSET, + GYROSCOPE_TEXTURE_ASSET, }; // Model asset ids. @@ -31,7 +32,8 @@ enum { GENERALE_ASSET, MUSSOLINI_ASSET, GUIDED_MISSILE_ASSET, - MISSILE_ASSET + MISSILE_ASSET, + GYROSCOPE_ASSET }; typedef struct Assets { |