include cleanup

This commit is contained in:
Glenn Maynard
2005-06-20 04:28:16 +00:00
parent e2cfba413a
commit 77ee110e65
4 changed files with 11 additions and 1 deletions
+2
View File
@@ -74,6 +74,8 @@ void HelpDisplay::Update( float fDeltaTime )
}
#include "LuaBinding.h"
template<class T>
class LunaHelpDisplay : public Luna<T>
{
+3 -1
View File
@@ -3,7 +3,7 @@
#include "RageUtil.h"
#include "XmlFile.h"
#include "ActorUtil.h"
#include "LuaManager.h"
REGISTER_ACTOR_CLASS( RollingNumbers )
RollingNumbers::RollingNumbers()
@@ -58,6 +58,8 @@ void RollingNumbers::UpdateText()
}
// lua start
#include "LuaBinding.h"
template<class T>
class LunaRollingNumbers : public Luna<T>
{
+3
View File
@@ -6,6 +6,7 @@
#include "GameState.h"
#include "StatsManager.h"
#include "ActorUtil.h"
#include "LuaManager.h"
REGISTER_ACTOR_CLASS( ScoreDisplayAliveTime )
@@ -58,6 +59,8 @@ void ScoreDisplayAliveTime::UpdateNumber()
}
// lua start
#include "LuaBinding.h"
template<class T>
class LunaScoreDisplayAliveTime : public Luna<T>
{
+3
View File
@@ -8,6 +8,7 @@
#include "XmlFile.h"
#include "ActorUtil.h"
#include "StatsManager.h"
#include "LuaManager.h"
REGISTER_ACTOR_CLASS( ScoreDisplayCalories )
@@ -67,6 +68,8 @@ void ScoreDisplayCalories::UpdateNumber()
}
// lua start
#include "LuaBinding.h"
template<class T>
class LunaScoreDisplayCalories : public Luna<T>
{