mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
FIXED: Core now builds under cmake for Windows TODO: Map and mmap gen currently does not build TODO: More sync work is required for Eluna, thus Eluna is temporarily disabled This has only been tested under Windows with CMAKE and VS
9 lines
191 B
C++
9 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"
|
|
}
|