make main window injectable + start settings window

This commit is contained in:
2023-10-19 17:21:45 +02:00
parent 2a5937652e
commit bc090bdaa8
5 changed files with 74 additions and 1 deletions

14
src/settings_window.hpp Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
struct ConfigModelI;
class SettingsWindow {
bool _show_window {false};
ConfigModelI& _conf;
public:
SettingsWindow(ConfigModelI& conf);
void render(void);
};