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.
|
#pragma once
|
|
#include"Man.h"
|
|
#include"AI.h"
|
|
#include"Chess.h"
|
|
class ChessGame
|
|
{
|
|
public:
|
|
ChessGame(Man* man, AI* ai, Chess* chess);
|
|
void play();//开始对局
|
|
|
|
//添加数据成员
|
|
private:
|
|
Man* man;
|
|
AI* ai;
|
|
Chess* chess;
|
|
};
|
|
|