mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-27 03:43:30 +00:00
15 lines
309 B
C++
Executable File
15 lines
309 B
C++
Executable File
#include "exitButton.h"
|
|
#include <root.h>
|
|
|
|
using namespace std;
|
|
using namespace vb01;
|
|
|
|
namespace battleship{
|
|
ExitButton::ExitButton(Vector2 pos, Vector2 size, string name, bool separate) : Button(pos, size, name, separate) {
|
|
}
|
|
|
|
void ExitButton::onClick() {
|
|
//Root::getSingleton()->set
|
|
}
|
|
}
|