mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:43:59 +00:00
18 lines
495 B
C++
18 lines
495 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
#include "Button.h"
|
|
#include "minecraft/client/Options.h"
|
|
|
|
class SmallButton : public Button {
|
|
private:
|
|
const Options::Option* option;
|
|
|
|
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, const Options::Option* item,
|
|
const std::string& msg);
|
|
const Options::Option* getOption();
|
|
}; |