mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
16 lines
236 B
C#
16 lines
236 B
C#
using System;
|
|
|
|
namespace ChineseChess.Core
|
|
{
|
|
public class Game
|
|
{
|
|
public Chessboard Chessboard { get; } = new Chessboard();
|
|
|
|
public Game()
|
|
{
|
|
Chessboard.ResetChessboard();
|
|
}
|
|
|
|
}
|
|
}
|