Files
PlanetFleet/orderButton.h
T
devZoGok 9eea473bef placeable unit order buttons
working unit ability buttons
2025-03-31 19:47:05 +03:00

17 lines
287 B
C++

#ifndef ORDER_BUTTON_H
#define ORDER_BUTTON_H
#include <button.h>
namespace battleship{
class OrderButton : public vb01Gui::Button{
public:
OrderButton(vb01::Vector3, vb01::Vector2, std::string, int, std::string, int);
void onClick();
private:
int orderId;
};
}
#endif