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

16 lines
292 B
C++

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