mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-24 00:06:08 +00:00
chore: format Minecraft.Client
This commit is contained in:
@@ -2,14 +2,15 @@
|
||||
#include "Button.h"
|
||||
#include "../GameState/Options.h"
|
||||
|
||||
class SmallButton : public Button
|
||||
{
|
||||
class SmallButton : public Button {
|
||||
private:
|
||||
const Options::Option *option;
|
||||
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();
|
||||
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();
|
||||
};
|
||||
Reference in New Issue
Block a user