lua.hpp
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // lua.hpp
  2. // Lua header files for C++
  3. // <<extern "C">> not supplied automatically because Lua also compiles as C++
  4. extern "C" {
  5. #include "lua.h"
  6. #include "lualib.h"
  7. #include "lauxlib.h"
  8. }