mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
20 lines
306 B
C++
20 lines
306 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
namespace cfg {
|
|
|
|
class ConfiguratorWindow {
|
|
public:
|
|
|
|
HWND hWnd;
|
|
|
|
ConfiguratorWindow();
|
|
~ConfiguratorWindow();
|
|
|
|
void run();
|
|
|
|
static LRESULT CALLBACK window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
}
|