mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-05-08 20:09:42 -05:00
2f68ee5df2
Requires micross.ttf font in game root and ENABLE_IM_FONT_ATLAS_SNAPSHOT undefined, not currently in the font atlas.
18 lines
259 B
C++
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;
|
|
};
|