mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 13:43:53 +00:00
15 lines
437 B
C++
15 lines
437 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();
|
|
}; |