aboutsummaryrefslogtreecommitdiff
path: root/src/client/lua_api/load_scene.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/lua_api/load_scene.cpp')
-rw-r--r--src/client/lua_api/load_scene.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/client/lua_api/load_scene.cpp b/src/client/lua_api/load_scene.cpp
index 342bc9a..c605581 100644
--- a/src/client/lua_api/load_scene.cpp
+++ b/src/client/lua_api/load_scene.cpp
@@ -11,8 +11,6 @@ extern "C" {
#include "scene/icamera.hpp"
#include "scene/imesh.hpp"
#include "scene/ilight.hpp"
-#include "phys/cbphysbox.hpp"
-#include "phys/bphysmodel.hpp"
using namespace irr;
@@ -27,12 +25,6 @@ void load_scenefuncs(lua_State* L){
imesh_register(L);
ilight_register(L);
- lua_newtable(L);//{}
- lua_setglobal(L,"phys");//
- //phys things
- cbphysbox_register(L);
-
- bphysmodel_register(L,device);
//lua_pop(L, 1);
}