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

class NAMEPLATES : public COMPONENT
{
	void render_nameplate(
		const class NETOBJ_CHARACTER *prev_char,
		const class NETOBJ_CHARACTER *player_char,
		const class NETOBJ_PLAYER_INFO *player_info
	);

public:
	virtual void on_render();
};