mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-22 04:11:57 +00:00
avoid extra qualification of function members
This commit is contained in:
parent
ce76dab7de
commit
a765a9a98e
2 changed files with 4 additions and 4 deletions
|
@ -307,12 +307,12 @@ public:
|
|||
mGhoul2 = iGhoul2; mEntNum = entNum; mModelNum = modelNum; mBoltNum = boltNum;
|
||||
}
|
||||
|
||||
inline CParticle::CParticle(void)
|
||||
inline CParticle(void)
|
||||
{
|
||||
mRefEnt.reType = RT_SPRITE; mEntNum = -1; mModelNum = -1; mBoltNum = -1;
|
||||
}
|
||||
|
||||
virtual CParticle::~CParticle(void)
|
||||
virtual ~CParticle(void)
|
||||
{
|
||||
mGhoul2.kill(); //remove my model ref without actually deleting
|
||||
}
|
||||
|
@ -608,4 +608,4 @@ public:
|
|||
};
|
||||
|
||||
|
||||
#endif //FX_PRIMITIVES_H_INC
|
||||
#endif //FX_PRIMITIVES_H_INC
|
||||
|
|
|
@ -215,7 +215,7 @@ public:
|
|||
}
|
||||
|
||||
void CameraShake( vec3_t origin, float intensity, int radius, int time );
|
||||
qboolean SFxHelper::GetOriginAxisFromBolt(CGhoul2Info_v *pGhoul2, int mEntNum, int modelNum, int boltNum, vec3_t /*out*/origin, vec3_t /*out*/axis[3]);
|
||||
qboolean GetOriginAxisFromBolt(CGhoul2Info_v *pGhoul2, int mEntNum, int modelNum, int boltNum, vec3_t /*out*/origin, vec3_t /*out*/axis[3]);
|
||||
};
|
||||
|
||||
extern SFxHelper theFxHelper;
|
||||
|
|
Loading…
Reference in a new issue