Untitled
#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
#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