Allowing teams'PM to be deleted

This commit is contained in:
AnonymusRaccoon
2020-03-09 12:04:32 +01:00
parent 2439c35cec
commit 045ce2301d
15 changed files with 66 additions and 15 deletions
+2 -1
View File
@@ -9,7 +9,8 @@
typedef enum display_type
{
HAPPINESS_DISPLAY
HAPPINESS_DISPLAY,
STUPIDITY_DISPLAY
} display_type;
struct game_display
+1
View File
@@ -11,6 +11,7 @@ struct game_manager
{
gc_component base;
int happiness;
int stupidity;
};
const struct game_manager game_manager;
+2
View File
@@ -19,4 +19,6 @@ struct teams_component
const struct teams_component teams_component;
bool teams_move_up(gc_scene *scene, float amount, float y_level);
#endif //_TEAMS_COMPONENT_C_