mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-07-19 09:15:12 +00:00
00a60a6e56
Note tha LF had to be converted to CRLF. Doesn't seem to ba an issue though.
10 lines
191 B
C++
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"
|
|
}
|