Untitled

 avatar
unknown
plain_text
10 months ago
202 B
6
Indexable
#pragma once

class Score {
public:
    Score();
    void reset();
    int getScore() const;
    int getHighScore() const;
    void updateScore(int lines);

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