using System; using System.Collections.Generic; using System.Text; namespace ChineseChess.Core { class ChessReferee { public static ChessMove Move(Chessboard chessboard, string move) { throw new NotImplementedException(); } public static ChessMove Move(Chessboard chessboard, ChessCamp camp, ChessboardPosition start, ChessboardPosition end) { throw new NotImplementedException(); } } }