Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
243 B
2
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_H
Leave a Comment