Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 191 Bytes

lua.hpp

File metadata and controls

9 lines (8 loc) · 191 Bytes
 
Dec 18, 2013
Dec 18, 2013
1
2
3
4
5
6
7
8
9
// 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"
}