Files
PlanetFleet/buildButton.h
T
devZoGok d43a40221b keeping unit buttons when pausing the game
removing unit buttons when deselecting units
2023-09-24 10:42:28 +03:00

17 lines
290 B
C++

#ifndef BUILD_BUTTON_H
#define BUILD_BUTTON_H
#include "unitButton.h"
namespace battleship{
class BuildButton : public UnitButton{
public:
BuildButton(vb01::Vector2, vb01::Vector2, int, std::string, int, std::string);
void onClick();
private:
int structureId;
};
}
#endif