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

📄 plib.h

📁 八皇后问题
💻 H
字号:
//====================================================================
//	DECLARATION OF THE ENUMERATION AND STRUCT
//====================================================================

#ifndef PLIB_H
#define PLIB_H

#include <Graphics.hpp>

#define IMGLEN    50
#define GRIDCOUNT 8

enum QImage{QNONE,QUEEN,TQUEEN,ERRQUEEN,QPOINT};

struct QPoint
{
	int    X;		//The X coordinate value of the point
	int    Y;		//The Y coordinate value of the point
	int    ColPos;	//The position of the queen
	TColor COLOR;	//The color of the grid
};

#endif

⌨️ 快捷键说明

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