Untitled

 avatar
unknown
plain_text
a year ago
202 B
7
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