mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 14:33:37 +00:00
13 lines
289 B
C++
13 lines
289 B
C++
#pragma once
|
|
#include "AbstractBeaconButton.h"
|
|
|
|
class BeaconScreen;
|
|
|
|
class BeaconCancelButton : public AbstractBeaconButton {
|
|
public:
|
|
BeaconCancelButton(BeaconScreen* screen, int id, int x, int y);
|
|
void renderTooltip(int xm, int ym) override;
|
|
|
|
private:
|
|
BeaconScreen* screen;
|
|
}; |