diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-05 00:07:55 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-05 00:07:55 -0600 |
commit | 451887dabd71b6b9b8cdf2587fee31ec59c3675b (patch) | |
tree | 0129a76d755c222dd62cd418f184ed1c7254aa79 /src/assets.h | |
parent | f45d32ca36a0ae85410b3eee61120fa97bf9bd25 (diff) |
Started working on cool stars
Diffstat (limited to 'src/assets.h')
-rw-r--r-- | src/assets.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/assets.h b/src/assets.h index beeb672..e3d7ca2 100644 --- a/src/assets.h +++ b/src/assets.h @@ -5,8 +5,8 @@ #define ASSET_PATH_MAX 255 -#define TEXTURE_ASSET_COUNT 4 -#define MODEL_ASSET_COUNT 10 +#define TEXTURE_ASSET_COUNT 5 +#define MODEL_ASSET_COUNT 11 // Paths to assets. extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][ASSET_PATH_MAX]; @@ -20,6 +20,7 @@ enum { ICON128_ASSET, ICON64_ASSET, GYROSCOPE_TEXTURE_ASSET, + SKY_TEXTURE_ASSET }; // Model asset ids. @@ -33,7 +34,8 @@ enum { MUSSOLINI_ASSET, GUIDED_MISSILE_ASSET, MISSILE_ASSET, - GYROSCOPE_ASSET + GYROSCOPE_ASSET, + SKY_ASSET }; typedef struct Assets { |