📄 pinkghost.h
字号:
// PinkGhost.h
//
// Class with specific data and behaviour for the pink ghost
//
/////////////////////////////////////////////////////////////////////////////
#ifndef _PINK_GHOST_H_
#define _PINK_GHOST_H_
#include "Ghost.h"
class PinkGhost : public Ghost
{
// methods
public:
virtual void moveInNormalState();
// initialization and cleanup
PinkGhost();
virtual ~PinkGhost();
virtual void initState(bool special);
};
#endif // _PINK_GHOST_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -