Files
PlanetFleet/unitButton.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

18 lines
301 B
C++

#ifndef UNIT_BUTTON_H
#define UNIT_BUTTON_H
#include <button.h>
namespace battleship{
class Unit;
class UnitButton : public vb01Gui::Button{
public:
UnitButton(vb01::Vector2, vb01::Vector2, std::string, std::string, int, std::string);
protected:
std::vector<Unit*> units;
};
}
#endif