1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-12 04:08:30 +00:00
re3/src/render/SpecialFX.h

36 lines
624 B
C
Raw Normal View History

#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);
};