plasmarepulser.h

来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 43 行

H
43
字号
#ifndef PLASMAREPULSER_H
#define PLASMAREPULSER_H

#include "Weapon.h"

class CProjectile;
class CRepulseGfx;
class CShieldPartProjectile;

class CPlasmaRepulser :
	public CWeapon
{
	CR_DECLARE(CPlasmaRepulser);
public:
	CPlasmaRepulser(CUnit* owner);
	~CPlasmaRepulser(void);
	void Update(void);
	void NewProjectile(CWeaponProjectile* p);
	float NewBeam(CWeapon* emitter, float3 start, float3 dir, float length, float3& newDir);
	bool BeamIntercepted(CWeapon* emitter);		//returns true if its a repulsing shield
	void Init(void);

	std::list<CWeaponProjectile*> incoming;
	std::list<CWeaponProjectile*> hasGfx;
	std::list<CShieldPartProjectile*> visibleShieldParts;

	void DependentDied(CObject* o);
	void SlowUpdate(void);

	float curPower;

	float radius;
	float sqRadius;

	int hitFrames;

	bool isEnabled;
	bool wasDrawn;
	bool startShowingShield;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?