#include "load_phys.hpp" #include "phys/bphysbox.hpp" #include "phys/bhingeconstraint.hpp" void load_physfuncs(lua_State* L){ lua_newtable(L);//{} lua_setglobal(L,"phys"); bphysbox_register(L); bhingeconstraint_register(L); }