?? bmplayer.h
字號:
// BMPlayer.h: interface for the BMPlayer class.
//
//////////////////////////////////////////////////////////////////////
class BMPlayer
{
public:
BMPlayer();
~BMPlayer();
bool alive;
float posX;
float posY;
int lastaction; //上次方向
int movetime;
int offsetX;
int offsetY;
int laytime;
int bombsum; //可放置數(shù)量
int bombcount; //已放置數(shù)量
int bomblength; //炸彈長度
int traptime; //被困時間
void initPos();
void delBomb();
void doMove();
void doPlay();
void doTrap();
private:
float speed; //速度
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -