unused
This commit is contained in:
@@ -935,12 +935,6 @@ RageColor ThemeManager::GetMetricC( const RString &sClassName, const RString &sV
|
||||
return ret;
|
||||
}
|
||||
|
||||
Commands ThemeManager::GetMetricM( const RString &sClassName, const RString &sValueName )
|
||||
{
|
||||
RString sValue = GetMetric( sClassName, sValueName ); // Use non-raw so that Lua expressions are allowed
|
||||
return ParseCommands( sValue );
|
||||
}
|
||||
|
||||
#if !defined(SMPACKAGE)
|
||||
apActorCommands ThemeManager::GetMetricA( const RString &sClassName, const RString &sValueName )
|
||||
{
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
#include "RageTypes.h"
|
||||
#include <set>
|
||||
#include <deque>
|
||||
#include "Command.h"
|
||||
#if !defined(SMPACKAGE)
|
||||
#include "ActorCommands.h"
|
||||
#endif
|
||||
@@ -77,7 +76,6 @@ public:
|
||||
float GetMetricF( const RString &sClassName, const RString &sValueName );
|
||||
bool GetMetricB( const RString &sClassName, const RString &sValueName );
|
||||
RageColor GetMetricC( const RString &sClassName, const RString &sValueName );
|
||||
Commands GetMetricM( const RString &sClassName, const RString &sValueName );
|
||||
#if !defined(SMPACKAGE)
|
||||
apActorCommands GetMetricA( const RString &sClassName, const RString &sValueName );
|
||||
#endif
|
||||
@@ -87,7 +85,6 @@ public:
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, float &valueOut ) { valueOut = GetMetricF( sClassName, sValueName ); }
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, bool &valueOut ) { valueOut = GetMetricB( sClassName, sValueName ); }
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, RageColor &valueOut ) { valueOut = GetMetricC( sClassName, sValueName ); }
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, Command &valueOut );
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, LuaExpression &valueOut );
|
||||
#if !defined(SMPACKAGE)
|
||||
void GetMetric( const RString &sClassName, const RString &sValueName, apActorCommands &valueOut );
|
||||
|
||||
Reference in New Issue
Block a user