mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
358 B
C++
20 lines
358 B
C++
#ifndef SINGLE_PLAYER_BUTTON_H
|
|
#define SINGLE_PLAYER_BUTTON_H
|
|
|
|
#include <vector>
|
|
|
|
#include "pfButtonBase.h"
|
|
|
|
namespace battleship{
|
|
class Tooltip;
|
|
|
|
class SinglePlayerButton : public PfButtonBase {
|
|
public:
|
|
SinglePlayerButton(vb01::Vector3, vb01::Vector2, std::string);
|
|
~SinglePlayerButton(){}
|
|
void onClick();
|
|
};
|
|
}
|
|
|
|
#endif
|