11 lines
261 B
C++
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;
|
|
}; |