Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/ui/reddog/windows/counter_window.cpp
Hyper 2f68ee5df2 Implemented mock reddog window manager
Requires micross.ttf font in game root and ENABLE_IM_FONT_ATLAS_SNAPSHOT undefined, not currently in the font atlas.
2025-01-17 20:14:50 +00:00

14 lines
185 B
C++

#include "counter_window.h"
#include <gpu/video.h>
static CounterWindow g_window;
void CounterWindow::Draw()
{
if (Begin())
{
Video::DrawCounter();
}
End();
}