Added: Pop'n Music Gametype.

This commit is contained in:
Andrew Livy
2003-10-07 00:01:32 +00:00
parent bd96d049ff
commit 5af28f3fb1
6 changed files with 98 additions and 0 deletions
+22
View File
@@ -179,6 +179,28 @@ enum // TechnoButtons
NUM_TECHNO_BUTTONS, // leave this at the end
};
enum // PnM Buttons
{
PNM_BUTTON_LEFT_WHITE,
PNM_BUTTON_LEFT_YELLOW,
PNM_BUTTON_LEFT_GREEN,
PNM_BUTTON_LEFT_BLUE,
PNM_BUTTON_RED,
PNM_BUTTON_RIGHT_BLUE,
PNM_BUTTON_RIGHT_GREEN,
PNM_BUTTON_RIGHT_YELLOW,
PNM_BUTTON_RIGHT_WHITE,
PNM_BUTTON_START,
PNM_BUTTON_BACK,
PNM_BUTTON_MENULEFT,
PNM_BUTTON_MENURIGHT,
PNM_BUTTON_MENUUP,
PNM_BUTTON_MENUDOWN,
PNM_BUTTON_COIN,
PNM_BUTTON_OPERATOR,
NUM_PNM_BUTTONS, // leave this at the end
};
const GameButton MAX_GAME_BUTTONS = 20;
const GameButton GAME_BUTTON_INVALID = MAX_GAME_BUTTONS+1;