[SettingsManager] Make setting getters const

This commit is contained in:
RickyRister 2026-03-26 19:57:03 -07:00
parent 74cce5ccb2
commit 4dba6a91bd
22 changed files with 124 additions and 124 deletions

View file

@ -17,12 +17,12 @@ class DebugSettings : public SettingsManager
DebugSettings(const DebugSettings & /*other*/);
public:
bool getShowCardId();
bool getShowCardId() const;
bool getLocalGameOnStartup();
int getLocalGamePlayerCount();
bool getLocalGameOnStartup() const;
int getLocalGamePlayerCount() const;
QString getDeckPathForPlayer(const QString &playerName);
QString getDeckPathForPlayer(const QString &playerName) const;
};
#endif // DEBUG_SETTINGS_H