mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
4f13237895
Change CRLF to LF in repo.
14 lines
No EOL
233 B
C
14 lines
No EOL
233 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 |