mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 06:34:08 +00:00
17 lines
414 B
C++
17 lines
414 B
C++
#pragma once
|
|
#include "AbstractBeaconButton.h"
|
|
|
|
class BeaconScreen;
|
|
|
|
class BeaconPowerButton : public AbstractBeaconButton {
|
|
public:
|
|
BeaconPowerButton(BeaconScreen* screen, int id, int x, int y, int effectId,
|
|
int tier);
|
|
void renderTooltip(int xm, int ym) override;
|
|
bool isSelected() const { return selected; }
|
|
|
|
private:
|
|
BeaconScreen* screen;
|
|
int effectId;
|
|
int tier;
|
|
}; |