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