Custom extension dll and LUA
Posted: Mon Aug 14, 2017 3:03 pm
Can i create a Extension dll and use methods in lua script?
For example
And in Lua script
tnx for help
For example
Code: Select all
public class MyDllClass
{
public bool Foo()
{
// Code here
}
}
Code: Select all
function OnRun()
{
-- Code lua
MyDllClass:Foo();
}