⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gamemain.h

📁 一个井字棋的游戏 可供人工智能初学者参考 简单的博弈
💻 H
字号:
// GameMain.h: interface for the GameMain class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GAMEMAIN_H__F80E3E97_5298_497E_A57D_DC27EC82AC62__INCLUDED_)
#define AFX_GAMEMAIN_H__F80E3E97_5298_497E_A57D_DC27EC82AC62__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//-------------------------------------

const int D_NONE = 0;
const int D_ME = 1;
const int D_AI = 2;
const int D_TIE = 3;


//-------------------------------------
class GameMain  
{
public:
	void init();
	bool computerMove();
	bool humanMove(int input_x);
	int winner();
	int m_room[9];
	GameMain();
	virtual ~GameMain();

};

#endif // !defined(AFX_GAMEMAIN_H__F80E3E97_5298_497E_A57D_DC27EC82AC62__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -