aboutsummaryrefslogtreecommitdiff
path: root/src/client/lua_api/load_phys.cpp
blob: 846d34c40fd7abb11852bbb3e0ab166d5903392b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <map>
extern "C" {
  #include <lua.h>
  #include <lauxlib.h>
  #include <lualib.h>
}
#include <irrlicht.h>

#include "../callbackhandeler.hpp"

using namespace irr;
using namespace gui;
using namespace core;

extern IrrlichtDevice* d;

void load_physfuncs(lua_State* L){
	printf("Called load physfuncs...");
}