📄 effectgunshotguidancepoint.h
字号:
//////////////////////////////////////////////////////////////////////////////// Filename : EffectGunShotGuidancePoint.h// Written by : bezz//////////////////////////////////////////////////////////////////////////////#ifndef __EFFECT_GUN_SHOT_GUIDANCE_POINT__#define __EFFECT_GUN_SHOT_GUIDANCE_POINT__#include "Effect.h"#include "EffectLoader.h"//////////////////////////////////////////////////////////////////////////////// class EffectGunShotGuidancePoint//////////////////////////////////////////////////////////////////////////////class EffectGunShotGuidancePoint : public Effect {public: EffectGunShotGuidancePoint(Zone* pZone, ZoneCoord_t x, ZoneCoord_t y) throw(Error);public: EffectClass getEffectClass() const throw() { return EFFECT_CLASS_GUN_SHOT_GUIDANCE_POINT; } void affect() throw(Error){} void unaffect() throw(Error); string toString() const throw();private:};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -