mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 03:34:18 +03:00
17 lines
394 B
C++
17 lines
394 B
C++
#pragma once
|
|
|
|
#include "Button.hpp"
|
|
|
|
class SmallButton : public Button
|
|
{
|
|
public:
|
|
SmallButton(int id, int x, int y, const std::string& str);
|
|
SmallButton(int id, int x, int y, int width, int height, const std::string& str);
|
|
SmallButton(int id, int x, int y, Options::Option* pOption, const std::string& str);
|
|
Options::Option* getOption();
|
|
|
|
private:
|
|
Options::Option* m_pOption = nullptr;
|
|
};
|
|
|