ccontrol.cpp
来自「3D俄罗斯方块源码.rar」· C++ 代码 · 共 55 行
CPP
55 行
//--------------------------------------------------------------
/**\!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 + =
减小字号Ctrl + -
显示快捷键?