forked from Kolyah35/minecraft-pe-0.6.1
20 lines
356 B
C++
Executable File
20 lines
356 B
C++
Executable File
#pragma once
|
|
|
|
#include "ImageButton.hpp"
|
|
|
|
class LargeImageButton: public ImageButton
|
|
{
|
|
typedef ImageButton super;
|
|
public:
|
|
LargeImageButton(int id, const std::string& msg);
|
|
LargeImageButton(int id, const std::string& msg, ImageDef& imageDef);
|
|
|
|
void render(Minecraft* minecraft, int xm, int ym);
|
|
|
|
private:
|
|
void setupDefault();
|
|
|
|
float _buttonScale;
|
|
};
|
|
|