Lephisto/lib/lua/lua.hpp
Allanis fd652a3642 [Add] Lua library to project.
-- Makes things work out of the box.
2013-02-08 12:28:01 +00:00

10 lines
191 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"
}