Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/ui/reddog/windows/counter_window.h
T
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

18 lines
259 B
C++

#pragma once
#include <ui/reddog/reddog_window.h>
class CounterWindow : public Reddog::Window
{
public:
CounterWindow() : Window()
{
Name = "Counter";
m_minWidth = 215;
m_minHeight = 328;
}
void Draw() override;
};