mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
14 lines
256 B
C
14 lines
256 B
C
|
#ifndef GAME_CLIENT_COMPONENTS_DEBUGHUD_H
|
||
|
#define GAME_CLIENT_COMPONENTS_DEBUGHUD_H
|
||
|
#include <game/client/component.h>
|
||
|
|
||
|
class CDebugHud : public CComponent
|
||
|
{
|
||
|
void RenderNetCorrections();
|
||
|
void RenderTuning();
|
||
|
public:
|
||
|
virtual void OnRender();
|
||
|
};
|
||
|
|
||
|
#endif
|