mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 12:08:20 +00:00
15 lines
278 B
C++
15 lines
278 B
C++
|
#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();
|
||
|
};
|
||
|
|