mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 21:13:37 +00:00
18 lines
498 B
C++
18 lines
498 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::wstring& msg);
|
|
SmallButton(int id, int x, int y, int width, int height,
|
|
const std::wstring& msg);
|
|
SmallButton(int id, int x, int y, const Options::Option* item,
|
|
const std::wstring& msg);
|
|
const Options::Option* getOption();
|
|
}; |