1 2 3 4 5 6 7 8 9 10 11
#ifndef __LUAX_LUA_HPP__ #define __LUAX_LUA_HPP__ // Include lua first extern "C" { #include "lua.h" #include "lualib.h" #include "lauxlib.h" } #endif