0
0
Fork 0
mirror of https://github.com/DrBeef/Raze.git synced 2025-02-25 13:10:53 +00:00
raze/source/build/include/elua.h

19 lines
204 B
C

#ifndef elua_h_
#define elua_h_
#ifdef __cplusplus
extern "C" {
#endif
#ifdef USE_LUAJIT_2_1
# include <luajit-2.1/lua.h>
#else
# include <luajit-2.0/lua.h>
#endif
#ifdef __cplusplus
}
#endif
#endif