Header cleanup.

This commit is contained in:
Steve Checkoway
2005-10-24 07:37:38 +00:00
parent 3cb8e00e94
commit 3f93a76b21
3 changed files with 7 additions and 3 deletions
+1
View File
@@ -10,6 +10,7 @@
#include "Trail.h" #include "Trail.h"
#include <set> #include <set>
#include "EnumHelper.h" #include "EnumHelper.h"
#include "RageTypes.h"
struct PlayerOptions; struct PlayerOptions;
struct SongOptions; struct SongOptions;
+5 -3
View File
@@ -3,14 +3,15 @@
#ifndef PlayerNumber_H #ifndef PlayerNumber_H
#define PlayerNumber_H #define PlayerNumber_H
#include "RageTypes.h" // for RageColor //#include "RageTypes.h" // for RageColor
#include "EnumHelper.h" #include "EnumHelper.h"
// //
// Player number stuff // Player number stuff
// //
enum PlayerNumber { enum PlayerNumber
{
PLAYER_1 = 0, PLAYER_1 = 0,
PLAYER_2, PLAYER_2,
NUM_PLAYERS, // leave this at the end NUM_PLAYERS, // leave this at the end
@@ -32,7 +33,8 @@ PlayerNumber GetNextPotentialCpuPlayer( PlayerNumber pn );
const PlayerNumber OPPOSITE_PLAYER[NUM_PLAYERS] = { PLAYER_2, PLAYER_1 }; const PlayerNumber OPPOSITE_PLAYER[NUM_PLAYERS] = { PLAYER_2, PLAYER_1 };
enum MultiPlayer { enum MultiPlayer
{
MultiPlayer_1 = 0, MultiPlayer_1 = 0,
MultiPlayer_2, MultiPlayer_2,
MultiPlayer_3, MultiPlayer_3,
+1
View File
@@ -7,6 +7,7 @@
#include "Difficulty.h" #include "Difficulty.h"
#include "EnumHelper.h" #include "EnumHelper.h"
#include "RageUtil_AutoPtr.h" #include "RageUtil_AutoPtr.h"
#include "RageTypes.h"
class Steps; class Steps;
class Style; class Style;