mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 12:08:20 +00:00
11 lines
168 B
C++
11 lines
168 B
C++
|
#include <game/client/component.hpp>
|
||
|
|
||
|
class DEBUGHUD : public COMPONENT
|
||
|
{
|
||
|
void render_netcorrections();
|
||
|
void render_tuning();
|
||
|
public:
|
||
|
virtual void on_render();
|
||
|
};
|
||
|
|