From c72c23f035c134508a9f755a57837c7639dc8b84 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 24 Jul 2006 05:56:16 +0000 Subject: [PATCH] Remove empty ctor and dtor. This class has no member variables. It would probably work just as well as a namespace but I don't know how that would interact with lua. --- stepmania/src/GameManager.cpp | 9 --------- stepmania/src/GameManager.h | 3 --- 2 files changed, 12 deletions(-) diff --git a/stepmania/src/GameManager.cpp b/stepmania/src/GameManager.cpp index a9ccf3cbc1..40c25f7118 100644 --- a/stepmania/src/GameManager.cpp +++ b/stepmania/src/GameManager.cpp @@ -2646,15 +2646,6 @@ static Style g_Styles[] = #define NUM_STYLES ARRAYSIZE(g_Styles) - -GameManager::GameManager() -{ -} - -GameManager::~GameManager() -{ -} - void GameManager::GetStylesForGame( const Game *pGame, vector& aStylesAddTo, bool editor ) const { for( unsigned s=0; s& aStylesAddTo, bool editor=false ) const; void GetStepsTypesForGame( const Game* pGame, vector& aStepsTypeAddTo ) const; const Style* GetEditorStyleForStepsType( StepsType st ) const;