Files
PlanetFleet/source/gui/buttons/singlePlayerButton.h
2026-05-21 20:28:52 +03:00

20 lines
349 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::Vector3, vb01::Vector2, std::string);
void onClick();
void onMouseOver();
void onMouseOff();
private:
};
}
#endif