Example #1
0
 public FungeEngine()
 {
     this.fundgeSpace = new FungeSpace();
     this.stackStack = new StackStack();
     this.instructionPointer = new FungeSpacePointer();
     this.instructionPointerDirection = new FungeSpaceDirection(1, 0);
     this.randomizer = new Random();
 }
Example #2
0
 internal CellsIndexer(FungeSpace owner)
 {
     this.Owner = owner;
 }