2019-05-30 19:24:47 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CSpecialFX
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void Render(void);
|
|
|
|
};
|
2019-06-30 19:06:55 +00:00
|
|
|
|
|
|
|
class CMotionBlurStreaks
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void RegisterStreak(int32 id, uint8 r, uint8 g, uint8 b, CVector p1, CVector p2);
|
|
|
|
};
|
2019-06-30 20:55:48 +00:00
|
|
|
|
|
|
|
struct CBulletTrace
|
|
|
|
{
|
|
|
|
CVector m_vecInf;
|
|
|
|
CVector m_vecSup;
|
|
|
|
bool m_bInUse;
|
|
|
|
uint8 m_framesInUse;
|
|
|
|
uint8 m_lifeTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CBulletTraces
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CBulletTrace (&aTraces)[16];
|
|
|
|
|
|
|
|
static void Init(void);
|
|
|
|
};
|
2019-07-24 16:55:43 +00:00
|
|
|
|
|
|
|
class C3dMarkers
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void PlaceMarkerSet(uint32 id, uint16 type, CVector& pos, float size, uint8 r, uint8 g, uint8 b, uint8 a, uint16 pulsePeriod, float pulseFraction, int16 rotateRate);
|
|
|
|
};
|