ddnet/src/game/client/components/nameplates.h

18 lines
373 B
C
Raw Normal View History

2010-05-29 07:25:38 +00:00
#ifndef GAME_CLIENT_COMPONENTS_NAMEPLATES_H
#define GAME_CLIENT_COMPONENTS_NAMEPLATES_H
#include <game/client/component.h>
class CNamePlates : public CComponent
{
void RenderNameplate(
const class CNetObj_Character *pPrevChar,
const class CNetObj_Character *pPlayerChar,
const class CNetObj_PlayerInfo *pPlayerInfo
);
public:
virtual void OnRender();
};
#endif