LUA-Cpp/main.cpp
OusmBlueNinja 35781322ed Started
2025-05-19 14:31:59 -05:00

17 lines
170 B
C++

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