mirror of
https://github.com/ENSL/NS.git
synced 2024-12-12 05:32:00 +00:00
14 lines
246 B
C
14 lines
246 B
C
|
#ifndef AVHLUABASE_H
|
||
|
#define AVHLUABASE_H
|
||
|
|
||
|
extern "C" {
|
||
|
#include <lua.h>
|
||
|
#include <lualib.h>
|
||
|
#include <lauxlib.h>
|
||
|
}
|
||
|
|
||
|
int AvHLUABase_Blank(lua_State *L);
|
||
|
int AvHLUABase_Print(lua_State *L);
|
||
|
int AvHLUABase_Client(lua_State *L);
|
||
|
|
||
|
#endif
|