mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-17 21:31:52 +01:00
31 lines
418 B
C++
31 lines
418 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);
|
|
};
|