blob: 2853364f76795f19ed4569c5dbfb0f4f6d0fd9df (
plain)
1
2
3
4
5
6
7
8
9
10
|
// lua.hpp
// Lua header files for C++
// 'extern "C" not supplied automatically in lua.h and other headers
// because Lua also compiles as C++
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
|