From 112517494847f0c86f58544cbf4c35c9b7712ab1 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Thu, 1 Nov 2018 13:53:16 -0400 Subject: Refactored code and added library Physics code for models now lives in the shared directory. To get file loading without irrlicht, a single-file header library (lib/tinyobjloader-c) was added. Metatables for generics and physics generics have also been seperated out. --- src/shared/lua_api/load_phys.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/shared/lua_api/load_phys.cpp') diff --git a/src/shared/lua_api/load_phys.cpp b/src/shared/lua_api/load_phys.cpp index 14a27ea..a846945 100644 --- a/src/shared/lua_api/load_phys.cpp +++ b/src/shared/lua_api/load_phys.cpp @@ -1,8 +1,10 @@ -#include "./load_phys.hpp" -#include "./phys/bphysbox.hpp" +#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); } -- cgit v1.2.3-70-g09d2