1
0
mirror of synced 2025-02-06 02:07:09 +01:00

10 lines
191 B
C++
Raw Normal View History

2014-11-30 09:33:17 +00:00
// lua.hpp
// Lua header files for C++
// <<extern "C">> not supplied automatically because Lua also compiles as C++
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}