Renamed core subproject into BeetRoundCore.

This commit is contained in:
2026-02-05 18:58:46 +01:00
parent 455c6ef3bd
commit 2fcd69df5f
34 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,15 @@
#ifndef SETTINGSHANDLER_H
#define SETTINGSHANDLER_H
#include <QVariantMap>
class SettingsHandler {
public:
static QVariantMap getSettings(QString group = "");
static void saveSettings(QVariantMap settingMap, QString group = "");
private:
SettingsHandler();
};
#endif // SETTINGSHANDLER_H