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

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