mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
16 lines
291 B
C++
16 lines
291 B
C++
#ifndef ACTIVE_STATE_BACK_BUTTON_H
|
|
#define ACTIVE_STATE_BACK_BUTTON_H
|
|
|
|
#include "backButton.h"
|
|
|
|
namespace battleship{
|
|
class ActiveStateBackButton : public BackButton{
|
|
public:
|
|
ActiveStateBackButton(vb01::Vector3, vb01::Vector2, std::string);
|
|
void onClick();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|