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