You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
242 B

#pragma once
#include "Player.h"
#include "AI.h"
class ChessGame
{
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݳ<EFBFBD>Ա
private:
Player* player;
AI* ai;
Chess* chess;
public:
ChessGame(Player* player, AI* ai, Chess* chess);
//<2F><>ʼ<EFBFBD>Ծ<EFBFBD>
void play();
};