mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
18 lines
346 B
C++
18 lines
346 B
C++
#ifndef OFFER_BUTTON_H
|
|
#define OFFER_BUTTON_H
|
|
|
|
#include "pfButtonBase.h"
|
|
|
|
namespace battleship{
|
|
class OfferButton : public PfButtonBase{
|
|
public:
|
|
OfferButton(vb01::Vector3, vb01::Vector2, int, std::string, int, std::string);
|
|
void onClick();
|
|
inline void setPlayerId(int plId){playerId = plId;}
|
|
private:
|
|
int playerId;
|
|
};
|
|
}
|
|
|
|
#endif
|