mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
273 B
C++
Executable File
17 lines
273 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);
|
|
void onClick();
|
|
};
|
|
}
|
|
|
|
#endif
|