mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
16 lines
307 B
C++
Executable File
16 lines
307 B
C++
Executable File
#pragma once
|
|
#ifndef OPTIONS_BUTTON_H
|
|
#define OPTIONS_BUTTON_H
|
|
|
|
#include <button.h>
|
|
|
|
namespace battleship {
|
|
class OptionsButton : public vb01Gui::Button {
|
|
public:
|
|
OptionsButton(vb01::Vector3, vb01::Vector2, std::string, bool);
|
|
virtual void onClick();
|
|
};
|
|
}
|
|
|
|
#endif
|