re3/src/render/WeaponEffects.h

23 lines
378 B
C
Raw Normal View History

#pragma once
class CWeaponEffects
{
2019-07-04 20:31:21 +00:00
public:
bool m_bCrosshair;
int8 gap_1[3];
CVector m_vecPos;
2020-01-23 20:21:50 +00:00
uint8 m_red;
uint8 m_green;
uint8 m_blue;
uint8 m_alpha;
float m_size;
2019-07-04 20:31:21 +00:00
int32 field_24;
RwTexture *m_pTexture;
RwRaster *m_pRaster;
public:
static void Render(void);
2020-01-23 20:21:50 +00:00
static void ClearCrossHair();
static void MarkTarget(CVector, uint8, uint8, uint8, uint8, float);
};