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