Untitled
#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
#pragma once class Score { public: Score(); void reset(); int getScore() const; int getHighScore() const; void updateScore(int lines); private: int score; int highScore; };