mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-16 14:50:01 +00:00
11 lines
192 B
C++
11 lines
192 B
C++
|
// 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"
|
||
|
}
|
||
|
|