about summary refs log tree commit diff
path: root/src/game/client/components/hud.hpp
blob: 15b9e52cc2fd8f957adede0755b5fb5305b83722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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_healthandammo();
	void render_goals();
	
public:
	HUD();
	
	virtual void on_reset();
	virtual void on_render();
};