mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 16:34:33 +00:00
14 lines
295 B
C++
14 lines
295 B
C++
#pragma once
|
|
#include "Button.h"
|
|
|
|
class TradeSwitchButton : public Button {
|
|
private:
|
|
bool mirrored;
|
|
|
|
public:
|
|
TradeSwitchButton(int id, int x, int y, bool mirrored);
|
|
|
|
protected:
|
|
int getYImage(bool hovered) override;
|
|
void renderBg(Minecraft* minecraft, int xm, int ym) override;
|
|
}; |