Files
PlanetFleet/exitButton.h
devZoGok 179f4c28ac factored out a state manager
using GameManager via a singleton
2021-10-30 08:09:30 +03:00

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