Untitled

mail@pastecode.io avatar
unknown
plain_text
18 days ago
202 B
2
Indexable
Never
#pragma once

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

private:
    int score;
    int highScore;
};
Leave a Comment