Untitled
unknown
plain_text
a year ago
243 B
11
Indexable
#ifndef SCORE_H
#define SCORE_H
#include <SFML/Graphics.hpp>
class Score {
public:
int score;
int highScore;
Score();
void update(int newScore);
void draw(sf::RenderWindow& window, sf::Font& font);
};
#endif // SCORE_HEditor is loading...
Leave a Comment