mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
20 lines
476 B
C#
20 lines
476 B
C#
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();
|
|
}
|
|
}
|
|
}
|