Beispiel #1
0
        public void Init(Core core, Runtime runtime)
        {
            Syscalls syscalls = runtime.GetSyscalls();

            mFunctions.maPlot = delegate(int _x, int _y)
            {
                syscalls.maPlot(_x, _y);
                return(0);
            };
        }