Esempio n. 1
0
        public override void Execute()
        {
            var lua = new LuaCaller(this.Interpreter);

            lua.Execute(Parameters);
        }
Esempio n. 2
0
 public override async Task ExecuteAsync()
 {
     // Call our single point of Lua entry.
     var lua = new LuaCaller(this.Interpreter);
     await lua.ExecuteAsync(Parameters);
 }