Untitled

 avatar
unknown
plain_text
a year ago
243 B
6
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
Editor is loading...
Leave a Comment