mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
22 lines
435 B
C++
22 lines
435 B
C++
#ifndef TRADING_SCREEN_BUTTON_H
|
|
#define TRADING_SCREEN_BUTTON_H
|
|
|
|
#include "activeStateButton.h"
|
|
|
|
namespace vb01Gui{
|
|
class Listbox;
|
|
}
|
|
|
|
namespace battleship{
|
|
class TradingScreenButton : public ActiveStateButton{
|
|
public:
|
|
TradingScreenButton(vb01::Vector3, vb01::Vector2, vb01Gui::Listbox*, int, std::string, std::string, int, std::string);
|
|
void onClick();
|
|
private:
|
|
int playerId;
|
|
vb01Gui::Listbox *listbox;
|
|
};
|
|
}
|
|
|
|
#endif
|