aboutsummaryrefslogtreecommitdiff
path: root/src/client/lua_api/load_game.hpp
blob: f20e0c642f64213daedecae891a1c832417c6c5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __H_loadgame
#define __H_loadgame
#include <stdio.h>
#include <stdlib.h>
#include <vector>
extern "C" {
  #include <lua.h>
  #include <lauxlib.h>
  #include <lualib.h>
}
#include <irrlicht.h>

void load_gamefuncs(lua_State* L, IrrlichtDevice* device);
#endif