mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:43:37 +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;
|
|
}; |