コード例 #1
0
ファイル: FungeEngine.cs プロジェクト: notmasteryet/esoteric
 public FungeEngine()
 {
     this.fundgeSpace = new FungeSpace();
     this.stackStack = new StackStack();
     this.instructionPointer = new FungeSpacePointer();
     this.instructionPointerDirection = new FungeSpaceDirection(1, 0);
     this.randomizer = new Random();
 }
コード例 #2
0
ファイル: FungeSpace.cs プロジェクト: notmasteryet/esoteric
 internal CellsIndexer(FungeSpace owner)
 {
     this.Owner = owner;
 }