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