コード例 #1
0
ファイル: GameInfo.cs プロジェクト: hgabor/boardgame
 private BoardGameRules.Piece SelectPiece(BoardGameRules.GameState state, IEnumerable<BoardGameRules.Piece> pieces)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Context.cs プロジェクト: hgabor/boardgame
 internal virtual Context Clone(BoardGameRules.GameState newState)
 {
     return new Context(this, newState);
 }
コード例 #3
0
 public BoardGameRules.Coords GameToBoard(BoardGameRules.Coords c)
 {
     return c;
 }
コード例 #4
0
 public bool IsValidBoardCoord(BoardGameRules.Coords c)
 {
     return true;
 }
コード例 #5
0
 public BoardGameRules.Coords BoardToGame(BoardGameRules.Coords c)
 {
     return c;
 }