prep for chat_gui refactor

This commit is contained in:
2024-04-20 17:57:11 +02:00
parent 29fd1bfb62
commit 52278f6726
11 changed files with 17 additions and 19 deletions

View File

@ -0,0 +1,15 @@
#pragma once
struct SimpleConfigModel;
class SettingsWindow {
bool _show_window {false};
// TODO: add iteration api to interface
SimpleConfigModel& _conf;
public:
SettingsWindow(SimpleConfigModel& conf);
void render(void);
};