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