mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
19 lines
385 B
C++
19 lines
385 B
C++
#pragma once
|
|
#include "WindowBase.h"
|
|
|
|
class HungWindow : public WindowBaseT<HungWindow> {
|
|
using base_type = WindowBaseT<HungWindow>;
|
|
friend base_type;
|
|
|
|
public:
|
|
bool Create(HINSTANCE hInst) noexcept;
|
|
|
|
protected:
|
|
LRESULT _MessageHandler(UINT msg, WPARAM wParam, LPARAM lParam) noexcept;
|
|
|
|
private:
|
|
void _UpdateButtonPos() noexcept;
|
|
|
|
HWND _hwndBtn = NULL;
|
|
HFONT _hUIFont = NULL;
|
|
};
|