mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-28 19:28:34 +00:00
19 lines
332 B
C++
Executable File
19 lines
332 B
C++
Executable File
#pragma once
|
|
#ifndef EXIT_BUTTON_H
|
|
#define EXIT_BUTTON_H
|
|
|
|
#include "button.h"
|
|
|
|
namespace game
|
|
{
|
|
namespace gui {
|
|
class ExitButton : public Button {
|
|
public:
|
|
ExitButton(irr::core::vector2d<s32>, irr::core::vector2d<s32>, irr::core::stringw, bool);
|
|
void onClick();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|