expermienting with DEFINE_METHOD macro for Lua methods

This commit is contained in:
Chris Danford
2005-09-10 02:47:04 +00:00
parent 9580a5f8a4
commit 65d71a4f23
46 changed files with 408 additions and 371 deletions
+2 -1
View File
@@ -2714,7 +2714,8 @@ public:
static int GetNextCourseSong( T* p, lua_State *L ) { p->GetNextCourseSong()->PushSelf(L); return 1; }
static void Register( Lua *L )
{
ADD_METHOD( GetNextCourseSong )
ADD_METHOD( GetNextCourseSong );
Luna<T>::Register( L );
}
};