mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
16 lines
260 B
C++
Executable File
16 lines
260 B
C++
Executable File
#ifndef EXIT_BUTTON_H
|
|
#define EXIT_BUTTON_H
|
|
|
|
#include <button.h>
|
|
#include <vector.h>
|
|
|
|
namespace battleship {
|
|
class ExitButton : public vb01Gui::Button {
|
|
public:
|
|
ExitButton(vb01::Vector3, vb01::Vector2);
|
|
void onClick();
|
|
};
|
|
}
|
|
|
|
#endif
|