1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 15:19:45 +00:00
re3/src/render/SpecialFX.h
2019-07-24 19:55:43 +03:00

36 lines
624 B
C++

#pragma once
class CSpecialFX
{
public:
static void Render(void);
};
class CMotionBlurStreaks
{
public:
static void RegisterStreak(int32 id, uint8 r, uint8 g, uint8 b, CVector p1, CVector p2);
};
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);
};
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);
};