aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/load_phys.cpp
blob: 687597050d2beff98dc86d201e12a1f8415be1d0 (plain)
1
2
3
4
5
6
7
8
9
10
#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);
}