Untitled
unknown
plain_text
25 days ago
243 B
2
Indexable
Never
#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