explosiveprojectile.h
来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 32 行
H
32 行
// ExplosiveProjectile.h: interface for the CExplosiveProjectile class.
//
//////////////////////////////////////////////////////////////////////
#ifndef __EXPLOSIVE_PROJECTILE_H__
#define __EXPLOSIVE_PROJECTILE_H__
#include "WeaponProjectile.h"
#include "Sim/Misc/DamageArray.h"
class CExplosiveProjectile : public CWeaponProjectile
{
CR_DECLARE(CExplosiveProjectile);
public:
CExplosiveProjectile(const float3& pos, const float3& speed, CUnit* owner,
const WeaponDef *weaponDef, int ttl = 100000, float areaOfEffect = 8,
float gravity = 0);
virtual ~CExplosiveProjectile();
virtual void Update();
void Draw(void);
void Collision(CUnit* unit);
void Collision();
int ShieldRepulse(CPlasmaRepulser* shield,float3 shieldPos, float shieldForce, float shieldMaxSpeed);
float areaOfEffect;
float invttl;
float curTime;
float gravity;
};
#endif // __EXPLOSIVE_PROJECTILE_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?