Major - Adds Lua scripting component support - V14.0.0
Adds a Lua scripting component to the engine, allowing users to attach Lua scripts to entities. Includes necessary Lua headers and library files. Also integrates the Lua scripting component into the editor, allowing it to be added via ImGui.
This commit is contained in:
9
enginecustom/include/Lua/lua.hpp
Normal file
9
enginecustom/include/Lua/lua.hpp
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user