aboutsummaryrefslogtreecommitdiff
path: root/src/shared/lua_api/load_phys.hpp
blob: 5e05642c95a93da469f587b4c3bd1bb9d4876ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern "C" {
  #include <lua.h>
  #include <lauxlib.h>
  #include <lualib.h>
}
#include "load_core.hpp"

struct EntityPhysics : EntityMass{
	btTransform* transform;
	btRigidBody* rigidbody;
	btCollisionShape* shape;
}EntityPhysics;

void loadPhysLibs(lua_State* L);