LUA-Cpp/main.cpp

17 lines
170 B
C++
Raw Permalink Normal View History

2025-05-19 19:31:59 +00:00
//
// Created by spenc on 5/19/2025.
//
#include "LuaCpp.h"
int main()
{
LC::LuaCpp luaState;
luaState.loadFile("./test.lua");
luaState.Call("test");
}