bombdropper.h
来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 29 行
H
29 行
#ifndef BOMBDROPPER_H
#define BOMBDROPPER_H
// Cannon.h: interface for the CCannon class.
//
//////////////////////////////////////////////////////////////////////
#include "Weapon.h"
class CBombDropper : public CWeapon
{
CR_DECLARE(CBombDropper);
public:
void Update();
CBombDropper(CUnit* owner, bool useTorps);
virtual ~CBombDropper();
bool TryTarget(const float3& pos,bool userTarget,CUnit* unit);
void Fire(void);
void Init(void);
bool AttackUnit(CUnit* unit, bool userTarget);
bool AttackGround(float3 pos, bool userTarget);
void SlowUpdate(void);
bool dropTorpedoes; //if we should drop torpedoes
float bombMoveRange; //range of bombs (torpedoes) after they hit ground/water
float tracking;
};
#endif /* BOMBDROPPER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?