mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
290 B
C++
17 lines
290 B
C++
#ifndef TRAIN_BUTTON_H
|
|
#define TRAIN_BUTTON_H
|
|
|
|
#include "unitButton.h"
|
|
|
|
namespace battleship{
|
|
class TrainButton : public UnitButton{
|
|
public:
|
|
TrainButton(vb01::Vector2, vb01::Vector2, std::string, int, std::string, int, int);
|
|
void onClick();
|
|
private:
|
|
int slotId;
|
|
};
|
|
}
|
|
|
|
#endif
|