aboutsummaryrefslogtreecommitdiff
path: root/src/assets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets.h')
-rw-r--r--src/assets.h10
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 {