Files
PlanetFleet/playButton.h
T
2026-08-07 11:54:55 +03:00

21 lines
355 B
C++

#ifndef PLAY_BUTTON_H
#define PLAY_BUTTON_H
#include "pfButtonBase.h"
namespace vb01Gui{
class Listbox;
}
namespace battleship{
class PlayButton : public PfButtonBase {
public:
PlayButton(vb01Gui::Listbox*, vb01::Vector3, vb01::Vector2, std::string, bool);
void onClick();
private:
vb01Gui::Listbox *mapListbox = nullptr;
};
}
#endif