Exemplo n.º 1
0
 public Asquell(string[] script)
 {
     _script = script;
     _memory = new MemoryBlock();
     _reflected = new ReflectedCommands();
     //Default Embedded Types
     _reflected.Embed(typeof(Invokables.MemoryAccess));
     _reflected.Embed(typeof(Invokables.MathCore));
 }
Exemplo n.º 2
0
 public void Evaluate(MemoryBlock memory,ReflectedCommands reflect)
 {
     reflect.CallReflection(_class, _method, memory, _args.ToArray());
 }