mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
24 lines
688 B
C++
Executable File
24 lines
688 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI_COMPONENTS__SmallButton_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI_COMPONENTS__SmallButton_H__
|
|
|
|
//package net.minecraft.client.gui;
|
|
|
|
#include <string>
|
|
#include "Button.h"
|
|
#include "../../Options.h"
|
|
|
|
class SmallButton: public Button
|
|
{
|
|
typedef Button super;
|
|
public:
|
|
SmallButton(int id, int x, int y, const std::string& msg);
|
|
SmallButton(int id, int x, int y, int width, int height, const std::string& msg);
|
|
SmallButton(int id, int x, int y, Options::Option* item, const std::string& msg);
|
|
|
|
Options::Option* getOption();
|
|
private:
|
|
Options::Option* option;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI_COMPONENTS__SmallButton_H__*/
|