Imported some of the dynamiccore branch from love-experiments:

- Type names for love's Lua objects are specified as an argument to luax_register_type, rather than being statically defined in an array.

- luax_register_type takes a variable number of method array arguments, for registering superclass methods without copying them into the subclass' method array.

Also removed most of the header declarations for wrapper functions.
This commit is contained in:
Alex Szpakowski
2015-11-29 20:38:12 -04:00
parent 77998c707d
commit 2c4e713114
124 changed files with 251 additions and 1300 deletions
-6
View File
@@ -30,12 +30,6 @@ namespace love
namespace timer
{
int w_step(lua_State *L);
int w_getDelta(lua_State *L);
int w_getFPS(lua_State *L);
int w_getAverageDelta(lua_State *L);
int w_sleep(lua_State *L);
int w_getTime(lua_State *L);
extern "C" LOVE_EXPORT int luaopen_love_timer(lua_State *L);
} // timer