Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit b9df8ee

Browse files
update core lib to only support rush stuff
1 parent 685845b commit b9df8ee

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

inc/core_lib.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ typedef enum e_obj_type
1717
OBJ_UNIT,
1818
OBJ_RESOURCE,
1919
OBJ_WALL,
20-
OBJ_MONEY,
21-
OBJ_BOMB
20+
OBJ_MONEY //,
21+
// OBJ_BOMB
2222
} t_obj_type;
2323

2424
/// @brief Object state.
@@ -35,9 +35,9 @@ typedef enum e_unit_type
3535
{
3636
UNIT_WARRIOR = 0,
3737
UNIT_MINER = 1,
38-
UNIT_CARRIER = 2,
39-
UNIT_BUILDER = 3,
40-
UNIT_BOMBERMAN = 4
38+
UNIT_CARRIER = 2 //,
39+
// UNIT_BUILDER = 3,
40+
// UNIT_BOMBERMAN = 4
4141
} t_unit_type;
4242

4343
typedef struct s_pos
@@ -85,11 +85,11 @@ typedef struct s_obj
8585
/// @brief The amount of money the resource / money contains.
8686
unsigned long balance;
8787
} s_resource_money;
88-
struct
89-
{
90-
/// @brief How much longer the bomb will take to explode.
91-
unsigned long countdown;
92-
} s_bomb;
88+
// struct
89+
// {
90+
// /// @brief How much longer the bomb will take to explode.
91+
// unsigned long countdown;
92+
// } s_bomb;
9393
};
9494
} t_obj;
9595

0 commit comments

Comments
 (0)