mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
280 B
C++
17 lines
280 B
C++
#ifndef BACK_BUTTON_H
|
|
#define BACK_BUTTON_H
|
|
|
|
#include <button.h>
|
|
|
|
namespace battleship{
|
|
class BackButton : public vb01Gui::Button{
|
|
public:
|
|
BackButton(vb01::Vector2, vb01::Vector2, std::string, std::string);
|
|
void onClick();
|
|
private:
|
|
std::string screen;
|
|
};
|
|
}
|
|
|
|
#endif
|