add ScreenSelectMusic::OPTIONS_MENU_AVAILABLE

This commit is contained in:
Chris Danford
2005-04-23 01:06:43 +00:00
parent 097f0ebb16
commit ff83372307
4 changed files with 10 additions and 4 deletions
+4
View File
@@ -1966,6 +1966,8 @@ public:
static int IsGoalComplete( T* p, lua_State *L ) { lua_pushboolean(L, p->IsGoalComplete((PlayerNumber)IArg(1)) ); return 1; }
static int PlayerIsUsingModifier( T* p, lua_State *L ) { lua_pushboolean(L, p->PlayerIsUsingModifier((PlayerNumber)IArg(1),SArg(2)) ); return 1; }
static int GetCourseSongIndex( T* p, lua_State *L ) { lua_pushnumber(L, p->GetCourseSongIndex() ); return 1; }
static int IsExtraStage( T* p, lua_State *L ) { lua_pushnumber(L, p->IsExtraStage() ); return 1; }
static int IsExtraStage2( T* p, lua_State *L ) { lua_pushnumber(L, p->IsExtraStage2() ); return 1; }
static void Register(lua_State *L)
{
@@ -1992,6 +1994,8 @@ public:
ADD_METHOD( IsGoalComplete )
ADD_METHOD( PlayerIsUsingModifier )
ADD_METHOD( GetCourseSongIndex )
ADD_METHOD( IsExtraStage )
ADD_METHOD( IsExtraStage2 )
Luna<T>::Register( L );