Add gold mining

This commit is contained in:
2024-01-23 18:55:56 +01:00
parent d2ea703ea9
commit efd241d950
3 changed files with 29 additions and 28 deletions

View File

@@ -11,7 +11,6 @@
extern ECS_TAG_DECLARE(GameEntity);
typedef enum ResourceType {
RES_IRON,
RES_WOOD,
RES_GOLD,
RES_FOOD,
@@ -20,7 +19,6 @@ typedef enum ResourceType {
static const char *getResourceTypePrettyName(ResourceType type) {
switch (type) {
case RES_IRON: return "Iron";
case RES_WOOD: return "Wood";
case RES_GOLD: return "Gold";
case RES_FOOD: return "Food";