about summary refs log tree commit diff
path: root/src/game/client/components/scoreboard.hpp
blob: b1913cec9783c3a03eda4f3aa4c48fc72e3dbf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <game/client/component.hpp>

class SCOREBOARD : public COMPONENT
{
	void render_goals(float x, float y, float w);
	void render_spectators(float x, float y, float w);
	void render_scoreboard(float x, float y, float w, int team, const char *title);
public:
	virtual void on_render();
};