Visual Studio 2015 project

This commit is contained in:
raysan5 2016-08-08 17:22:26 +02:00
parent ed387d00aa
commit 7e36727328
32 changed files with 9847 additions and 0 deletions

View file

@ -0,0 +1,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"
}