mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-07 04:01:07 -06:00
Requires micross.ttf font in game root and ENABLE_IM_FONT_ATLAS_SNAPSHOT undefined, not currently in the font atlas.
14 lines
185 B
C++
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();
|
|
}
|