mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
18 lines
292 B
C++
18 lines
292 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, int);
|
|
protected:
|
|
int unitId;
|
|
};
|
|
}
|
|
|
|
#endif
|