mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
309 B
C++
17 lines
309 B
C++
#ifndef STATS_BUTTON_H
|
|
#define STATS_BUTTON_H
|
|
|
|
#include "pfButtonBase.h"
|
|
|
|
namespace battleship {
|
|
class StatsButton : public PfButtonBase{
|
|
public:
|
|
StatsButton(vb01::Vector3, vb01::Vector2, std::string, int, std::string);
|
|
void onClick();
|
|
private:
|
|
void addPlayerDataGuiElements(int);
|
|
};
|
|
}
|
|
|
|
#endif
|