make main window injectable + start settings window
This commit is contained in:
14
src/settings_window.hpp
Normal file
14
src/settings_window.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
struct ConfigModelI;
|
||||
|
||||
class SettingsWindow {
|
||||
bool _show_window {false};
|
||||
ConfigModelI& _conf;
|
||||
|
||||
public:
|
||||
SettingsWindow(ConfigModelI& conf);
|
||||
|
||||
void render(void);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user