bind GetCurrentSystemMessage
This commit is contained in:
@@ -847,6 +847,7 @@ public:
|
|||||||
}
|
}
|
||||||
static int SystemMessage( T* p, lua_State *L ) { p->SystemMessage( SArg(1) ); return 0; }
|
static int SystemMessage( T* p, lua_State *L ) { p->SystemMessage( SArg(1) ); return 0; }
|
||||||
static int ScreenIsPrepped( T* p, lua_State *L ) { lua_pushboolean( L, ScreenManagerUtil::ScreenIsPrepped( SArg(1) ) ); return 1; }
|
static int ScreenIsPrepped( T* p, lua_State *L ) { lua_pushboolean( L, ScreenManagerUtil::ScreenIsPrepped( SArg(1) ) ); return 1; }
|
||||||
|
static int GetCurrentSystemMessage( T* p, lua_State *L ){ LuaHelpers::Push( L, p->GetCurrentSystemMessage() ); return 1; }
|
||||||
|
|
||||||
LunaScreenManager()
|
LunaScreenManager()
|
||||||
{
|
{
|
||||||
@@ -854,6 +855,7 @@ public:
|
|||||||
ADD_METHOD( GetTopScreen );
|
ADD_METHOD( GetTopScreen );
|
||||||
ADD_METHOD( SystemMessage );
|
ADD_METHOD( SystemMessage );
|
||||||
ADD_METHOD( ScreenIsPrepped );
|
ADD_METHOD( ScreenIsPrepped );
|
||||||
|
ADD_METHOD( GetCurrentSystemMessage );
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user