mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
15 lines
390 B
C++
15 lines
390 B
C++
#include "mainMenuButton.h"
|
|
#include "gameManager.h"
|
|
#include "concreteGuiManager.h"
|
|
|
|
namespace battleship{
|
|
using namespace std;
|
|
using namespace vb01;
|
|
using namespace vb01Gui;
|
|
|
|
MainMenuButton::MainMenuButton(Vector3 pos, Vector2 size, string name) : Button(pos, size, name, GameManager::getSingleton()->getPath() + "Fonts/batang.ttf", -1, true){}
|
|
|
|
void MainMenuButton::onClick(){
|
|
}
|
|
}
|