change volume to start timer

This commit is contained in:
2025-03-29 11:49:19 +01:00
parent e0de2b5f90
commit ec40495328
6 changed files with 34 additions and 28 deletions

View File

@@ -24,7 +24,7 @@ class Settings {
std::vector<Keybinds> keybinds;
int chosenKeybinds;
int windowSizeMode;
int masterVolume;
int startTimerLength;
Gamemode gamemode;
std::vector<std::pair<PiecesType, int>> selectedPieces;
@@ -47,9 +47,9 @@ class Settings {
void changeVideoMode(sf::RenderWindow& window) const;
bool raiseMasterVolume();
bool lengthenStartTimer();
bool lowerMasterVolume();
bool shortenStartTimer();
void setGamemode(Gamemode gamemode);
@@ -69,7 +69,7 @@ class Settings {
int getWindowSizeMultiplier() const;
int getMasterVolume() const;
int getStartTimerLength() const;
const std::vector<std::pair<PiecesType, int>>& getSelectedPieces() const;
};