about summary refs log tree commit diff
path: root/src/game/client/components/hud.hpp
blob: 3ec102f14fc248ad821fbd4884cd8e940a61266f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <game/client/component.hpp>

class HUD : public COMPONENT
{	
	float width;
	
	void render_cursor();
	
	void render_fps();
	void render_connectionwarning();
	void render_tunewarning();
	void render_teambalancewarning();
	void render_voting();
	void render_healthandammo();
	void render_goals();
	
public:
	HUD();
	
	virtual void on_reset();
	virtual void on_render();
};