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

📄 ccontrol.cpp

📁 3D俄罗斯方块源码.rar
💻 CPP
字号:
//--------------------------------------------------------------
/**\!File
  *
  *File name:CCONTROL.cpp
  *
  *His:add by honghaier @2004/5/7
  *
  *Desc:游戏控制类
  */
//---------------------------------------------------------------
#include "CControl.h"
//---------------------------------------------------------------
/**!\brief
  *设置UP键
  */
	void CControl::SetUpKey(int _iup)
	{
		iUpKey=_iup;
	}
/**!\brief
  *设置Down键
  */
	void CControl::SetDownKey(int _idown)
	{
		iDownKey=_idown;
	}
/**!\brief
  *设置Left键
  */
	void CControl::SetLeftKey(int _ileft)
	{
        iLeftKey=_ileft;
	}
/**!\brief
  *设置Right键
  */
	void CControl::SetRightKey(int _iright)
	{
		iRightKey=_iright;
	}
/**!\brief
  *设置End键
  */
	void CControl::SetEndKey(int _iend)
	{
		iEndKey=_iend;
	}
/**!\brief
  *设置Stop键
  */
	void CControl::SetStopKey(int _istop)
    {
	    iStopKey=_istop;	
	}

⌨️ 快捷键说明

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