mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
368 B
C++
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
|