aboutsummaryrefslogtreecommitdiffstats
path: root/src/assets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets.h')
-rw-r--r--src/assets.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/assets.h b/src/assets.h
index 0c6664c..88345b1 100644
--- a/src/assets.h
+++ b/src/assets.h
@@ -3,29 +3,20 @@
#ifndef ASSETS_H
#define ASSETS_H
-#define IMAGE_ASSET_COUNT 1
-#define TEXTURE_ASSET_COUNT 4
+#define TEXTURE_ASSET_COUNT 3
-extern const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX];
extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX];
typedef int8_t AssetId;
-// Image asset ids.
-enum {
- HEIGHT_MAP_IMAGE
-};
-
// Texture asset ids.
enum {
- HEIGHT_MAP_TEXTURE,
MINT_TEXTURE,
- NICK_TEXTURE,
+ NICKEL_TEXTURE,
TREE_TEXTURE
};
typedef struct {
- Image images[IMAGE_ASSET_COUNT];
Texture textures[TEXTURE_ASSET_COUNT];
} Assets;