Files
PlanetFleet/singlePlayerButton.h
T
devZoGok 4110a7d217 implementation of AbstractGuiManager from vb01
recreated main menu screen using the implementation
2023-06-25 08:54:59 +03:00

20 lines
368 B
C++

#ifndef SINGLE_PLAYER_BUTTON_H
#define SINGLE_PLAYER_BUTTON_H
#include <vector>
#include <button.h>
namespace battleship{
class SinglePlayerButton : public vb01Gui::Button {
public:
SinglePlayerButton(vb01::Vector2, vb01::Vector2, std::string);
void onClick();
void onMouseOver();
void onMouseOff();
private:
};
}
#endif