summaryrefslogtreecommitdiffstats
path: root/src/render/WeaponEffects.h
blob: e4d0461a8175c865265374c4f9d6eaa557d98e1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

class CWeaponEffects
{
public:
	bool m_bCrosshair;
	int8 gap_1[3];
	CVector m_vecPos;
	uint8 m_red;
	uint8 m_green;
	uint8 m_blue;
	uint8 m_alpha;
	float m_size;
	int32 field_24;
	RwTexture *m_pTexture;
	RwRaster *m_pRaster;

public:
	static void Render(void);
	static void ClearCrossHair();
	static void MarkTarget(CVector, uint8, uint8, uint8, uint8, float);
	static void Init(void);
};