parent
359d8f3763
commit
78b925ac68
@ -0,0 +1,17 @@
|
|||||||
|
#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;
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in new issue