Files
BusyRabbit/Plugins/slua_unreal/External/lua/lua.hpp
2025-07-09 01:08:35 +08:00

11 lines
215 B
C++

// lua.hpp
// Lua header files for C++
// <<extern "C">> not supplied automatically because Lua also compiles as C++
#ifndef lua_hpp
#define lua_hpp
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#endif