diff options
Diffstat (limited to 'Player.h')
| -rw-r--r-- | Player.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -61,6 +61,9 @@ class Player // Camera handling TYPE_CAMERA Camera; + // Map rendering + void RenderMap(void); + // Button pressed/released events void ButtonLeftReleased(void); void ButtonRightReleased(void); @@ -85,10 +88,12 @@ class Player bool showActionsMenu; uint8_t showActionsMenu_counter; uint8_t showActionsMenu_index; + uint8_t showActionsMenu_counterLevel1; void IncreaseShowActionsMenuIndex(); // Action callbacks - void ActionCreateUnit (TYPE_UNIT* ptrUnit); + void ActionCreateUnit(TYPE_UNIT* ptrUnit, TYPE_UNIT_ID unit); + void ActionCreateBuilding(TYPE_UNIT* ptrUnit, TYPE_UNIT_ID bldg); }; #endif // __cplusplus |
