mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
399 B
C++
Executable File
17 lines
399 B
C++
Executable File
#include "exitButton.h"
|
|
#include "defConfigs.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, GameManager::getSingleton()->getPath() + "Fonts/batang.ttf", -1, separate) {
|
|
}
|
|
|
|
void ExitButton::onClick() {
|
|
//Root::getSingleton()->set
|
|
}
|
|
}
|