aboutsummaryrefslogtreecommitdiff
path: root/src/server/lua_api/load_game.hpp
blob: 7937b15e5def92522d856c8140a62251a5a257dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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>
}

void load_gamefuncs(lua_State* L);
#endif