tomato/src/settings_window.hpp

16 lines
239 B
C++
Raw Normal View History

#pragma once
2023-10-19 23:52:11 +02:00
struct SimpleConfigModel;
class SettingsWindow {
bool _show_window {false};
2023-10-19 23:52:11 +02:00
// TODO: add iteration api to interface
SimpleConfigModel& _conf;
public:
2023-10-19 23:52:11 +02:00
SettingsWindow(SimpleConfigModel& conf);
void render(void);
};