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

📄 m_queue.h

📁 基于WindowCE上对于windows mobile开发的一个俄罗斯方块程序
💻 H
字号:
#pragma once
#include "m_cell.h"


class m_Queue
{
public:
	m_Queue(void);
public:
	~m_Queue(void);
public:
	void m_Queue::OnDraw(CDC * pDC,int Bottom_X,int Bottom_Y);
private:
	m_Cell _Cell[QUEUELENTH];
public:
	int GetColorIndex(int index);
	void SetColorIndex(int index,int color);
	void SetPosition(int index, short sX, short sY);
	void SetRandomColorIndex();
	void TurnAround();

//public:
//	m_Queue& operator = (const m_Queue &lhs);

	// m_Queue operator = (const m_Queue &); 

};

⌨️ 快捷键说明

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