first commit
This commit is contained in:
15
Minecraft.Client/SmallButton.h
Normal file
15
Minecraft.Client/SmallButton.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include "Button.h"
|
||||
#include "Options.h"
|
||||
|
||||
class SmallButton : public Button
|
||||
{
|
||||
private:
|
||||
const Options::Option *option;
|
||||
|
||||
public:
|
||||
SmallButton(int id, int x, int y, const wstring& msg);
|
||||
SmallButton(int id, int x, int y, int width, int height, const wstring& msg);
|
||||
SmallButton(int id, int x, int y, const Options::Option *item, const wstring& msg);
|
||||
const Options::Option *getOption();
|
||||
};
|
||||
Reference in New Issue
Block a user