1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-11 16:33:35 +00:00
lovr/src/api/physics.c

14 lines
237 B
C
Raw Normal View History

2017-05-16 04:59:53 +00:00
#include "api/lovr.h"
#include "physics/physics.h"
int l_lovrPhysicsInit(lua_State* L) {
lua_newtable(L);
luaL_register(L, NULL, lovrPhysics);
lovrPhysicsInit();
return 1;
}
const luaL_Reg lovrPhysics[] = {
{ NULL, NULL }
};