aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/load_phys.cpp
blob: 14a27ea3cbb1d3cc764d2e6de8a6c6ef014fc9a9 (plain)
1
2
3
4
5
6
7
8
#include "./load_phys.hpp"
#include "./phys/bphysbox.hpp"

void loadPhysLibs(lua_State* L){
	lua_newtable(L);//{}
	lua_setglobal(L,"phys");
	bphysbox_register(L);
}