mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 11:23:36 +00:00
16 lines
475 B
C++
16 lines
475 B
C++
#pragma once
|
|
#include "Button.h"
|
|
#include "../GameState/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();
|
|
}; |