about summary refs log tree commit diff
path: root/src/game/client/components/hud.hpp
blob: 41fa0ff2924f400d95705a5645df2d99c226dd07 (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_teambalancewarning();
	void render_voting();
	void render_healthandammo();
	void render_goals();
	
public:
	HUD();
	
	virtual void on_reset();
	virtual void on_render();
};