mirror of
https://github.com/halpz/re3.git
synced 2025-01-22 06:40:57 +00:00
14 lines
200 B
C++
14 lines
200 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);
|
|
};
|