Untitled

Anonymous
plain_text
08/26/2024 8:24 AM
300 B
23
Indexable
#pragma once

class Score {
public:
    Score();
    void updateScore(int points);
    int getScore() const;
    void setHighScore(int highScore);
    int getHighScore() const;

private:
    int score;
    int highScore;
};
Editor is loading...
Leave a Comment