コード例 #1
0
ファイル: ValueStack.cs プロジェクト: Fedorm/core-master
        public object CallScript(String functionName, object[] parameters)
        {
            IExternalFunction func = Values["controller"] as IExternalFunction;

            return(func.CallFunction(functionName, parameters));
        }
コード例 #2
0
ファイル: Executor.cs プロジェクト: Fedorm/core-master
 public object ExecuteFunction(string identifier, object[] args)
 {
     return(_controller.CallFunction(identifier, args));
 }