コード例 #1
0
 public override TCell this[SigmaIndex index]
 {
     get { return(ModifiedLocation.Equals(index) ? ModifiedCell : ParentMaze[index]); }
 }
コード例 #2
0
ファイル: ModifiedMapWrapper.cs プロジェクト: FoKycHuK/CVARC
 public override TCell this[Location location]
 {
     get { return(ModifiedLocation.Equals(location) ? ModifiedCell : ParentMaze[location]); }
 }