Files
PlanetFleet/exitButton.h
T
2021-11-01 11:49:56 +02:00

17 lines
292 B
C++
Executable File

#pragma once
#ifndef EXIT_BUTTON_H
#define EXIT_BUTTON_H
#include <button.h>
#include <vector.h>
namespace battleship {
class ExitButton : public vb01Gui::Button {
public:
ExitButton(vb01::Vector2, vb01::Vector2, std::string, bool);
void onClick();
};
}
#endif