Added End Turn button so we can do multiple actions per round - this will be limited by energy shortly

This commit is contained in:
2011-07-03 17:45:11 -04:00
parent c5d6167e8c
commit cfe5666c04
4 changed files with 12 additions and 6 deletions

View File

@ -15,7 +15,7 @@ using std::string;
// has me hard-pressed to figure out what it is.
enum ButtonAction {BUTTON_BUILD=0x1, BUTTON_ATTACK=0x2, BUTTON_MOVE=0x4,
BUTTON_BUILD_ATTACKER=0x8, BUTTON_BUILD_DEFENDER=0x10,
BUTTON_BUILD_PRODUCER=0x20};
BUTTON_BUILD_PRODUCER=0x20, BUTTON_END_TURN=0x40};
class MenuButton
{