Files
PlanetFleet/researchButton.h
T
2024-03-09 14:49:04 +02:00

17 lines
302 B
C++

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