mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
21 lines
352 B
C++
21 lines
352 B
C++
#ifndef PLAY_BUTTON_H
|
|
#define PLAY_BUTTON_H
|
|
|
|
#include <button.h>
|
|
|
|
namespace vb01Gui{
|
|
class Listbox;
|
|
}
|
|
|
|
namespace battleship{
|
|
class PlayButton : public vb01Gui::Button {
|
|
public:
|
|
PlayButton(vb01Gui::Listbox*, vb01::Vector3, vb01::Vector2, std::string, bool);
|
|
void onClick();
|
|
private:
|
|
vb01Gui::Listbox *mapListbox = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif
|