mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
18 lines
355 B
C++
18 lines
355 B
C++
#ifndef GAME_CLIENT_COMPONENTS_NAMEPLATES_H
|
|
#define GAME_CLIENT_COMPONENTS_NAMEPLATES_H
|
|
#include <game/client/component.h>
|
|
|
|
class CNamePlates : public CComponent
|
|
{
|
|
void RenderNameplate(
|
|
const CNetObj_Character *pPrevChar,
|
|
const CNetObj_Character *pPlayerChar,
|
|
const CNetObj_PlayerInfo *pPlayerInfo
|
|
);
|
|
|
|
public:
|
|
virtual void OnRender();
|
|
};
|
|
|
|
#endif
|