Files
kaizen/src/frontend/Settings/GeneralSettings.hpp
2025-12-15 09:37:10 +01:00

11 lines
261 B
C++

#pragma once
#include <SettingsTab.hpp>
#include <NativeWindow.hpp>
struct GeneralSettings final : SettingsTab {
void render() override;
explicit GeneralSettings(gui::NativeWindow&);
private:
gui::NativeWindow& window;
std::string savesPath;
};