Okay, time to test this stuff

This commit is contained in:
rnlf
2017-01-22 01:59:08 +01:00
parent 5f6daa497f
commit d14cf3ac74
8 changed files with 5516 additions and 2 deletions

View File

@@ -26,6 +26,8 @@ int luaopen_graphics(lua_State *L);
int luaopen_timer(lua_State *L);
int luaopen_keyboard(lua_State *L);
int luaopen_mouse(lua_State *L);
int luaopen_mixer(lua_State *L);
int luaopen_sound(lua_State *L);
int luaopen_love(lua_State *L) {
int i;
@@ -59,6 +61,8 @@ int luaopen_love(lua_State *L) {
{ "timer", luaopen_timer },
{ "keyboard", luaopen_keyboard },
{ "mouse", luaopen_mouse },
{ "mixer", luaopen_mixer },
{ "sound", luaopen_mixer },
{ 0 },
};
for (i = 0; mods[i].name; i++) {