クラスをロードするだけで、クラスを C# 関数に直接マップする方法はありますか? 100以上作っRegisterFunctions
てマッピングする代わりに?
例:みたいな
this.lua = new LuaInterface.Lua();
RegisterAll(Class1.MainClass);
lua.DoFile(this.filePath);
ルアの内部:
function Start
MainClass.MappedPrintFunc("hihi");
end