/* AUTHOR: LAUREN DULICK DATE: APRIL 2023 - MAY 2023 TITLE: MINESWEEPER */ // BUTTON.H #pragma once #include #include "FilePaths.h" class Button { public: Button(const char* buttonName); sf::Sprite button; void SetSprite(const char* buttonName); void SetPosition(float x, float y); sf::Sprite& GetSprite(); };