mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
332 B
C++
Executable File
20 lines
332 B
C++
Executable File
#pragma once
|
|
#ifndef EXIT_BUTTON_H
|
|
#define EXIT_BUTTON_H
|
|
|
|
#include <button.h>
|
|
#include <vector.h>
|
|
|
|
namespace game
|
|
{
|
|
namespace gui {
|
|
class ExitButton : public vb01Gui::Button {
|
|
public:
|
|
ExitButton(vb01::Vector2, vb01::Vector2, std::string, bool);
|
|
void onClick();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|