Mineserver
A rewrite of Minecraft 1.8.9 in C++ !
Loading...
Searching...
No Matches
luaregnet.hpp
Go to the documentation of this file.
1
12#ifndef MINESERVER_LUAREGNET_H
13#define MINESERVER_LUAREGNET_H
14
15#include <plugins/luaheaders.h>
17#include <types/luaregtypes.hpp>
18
24void loadNetLua(lua_State *state)
25{
26 loadTypesLua(state);
27 loadPacketsLua(state);
28}
29
30#endif // MINESERVER_LUAREGNET_H
Utility header file for lua things.
void loadNetLua(lua_State *state)
Loads network lua classes.
Definition luaregnet.hpp:24
Utility for loading packets lua classes.
void loadPacketsLua(lua_State *state)
Loads packets lua classes.
Definition luaregpackets.hpp:26
Utility for loading types lua classes.
void loadTypesLua(lua_State *state)
Loads types classes to lua.
Definition luaregtypes.hpp:27