More attempts at warning-free code.

This commit is contained in:
Jason Felds
2011-06-14 13:51:26 -04:00
parent 3b1260bb79
commit 0bc2c20268
5 changed files with 12 additions and 0 deletions
+3
View File
@@ -19,6 +19,9 @@ class Style;
class Game;
struct lua_State;
int GetNumCreditsPaid();
int GetCreditsRequiredToPlayStyle( const Style *style );
class GameCommand
{
public:
+3
View File
@@ -14,6 +14,9 @@ class OptionRowHandler;
class GameCommand;
struct OptionRowDefinition;
RString ITEMS_LONG_ROW_X_NAME( size_t p );
RString MOD_ICON_X_NAME( size_t p );
class OptionRowType
{
public:
+3
View File
@@ -7,6 +7,9 @@
#include "BitmapText.h"
#include "Quad.h"
void ChangeVolume( float fDelta );
void ChangeVisualDelay( float fDelta );
class ScreenDebugOverlay : public Screen
{
public:
+2
View File
@@ -16,6 +16,8 @@
StatsManager* STATSMAN = NULL; // global object accessable from anywhere in the program
void AddPlayerStatsToProfile( Profile *pProfile, const StageStats &ss, PlayerNumber pn );
XNode* MakeRecentScoreNode( const StageStats &ss, Trail *pTrail, const PlayerStageStats &pss, MultiPlayer mp );
StatsManager::StatsManager()
{
+1
View File
@@ -2,6 +2,7 @@
#define StatsManager_H
#include "StageStats.h"
/** @brief Managed non-persisted statistics. */
class StatsManager
{