I now have a start/stop button for the pomodoro timer.

This commit is contained in:
Zed A. Shaw 2024-09-24 17:26:39 -04:00
parent e1c667d816
commit 47c9cb719e
5 changed files with 18 additions and 6 deletions

View file

@ -47,6 +47,10 @@ class SFMLBackend {
sf::RenderWindow window;
sf::Sprite face_sprite;
sf::Texture face_texture;
sf::Sprite stop_button;
sf::Texture stop_texture;
sf::Sprite start_button;
sf::Texture start_texture;
int hit_points = 50;
sf::Font font;
GameEngine &game;