mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-25 12:14:34 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
21 lines
538 B
C++
21 lines
538 B
C++
#include "SmallButton.h"
|
|
|
|
SmallButton::SmallButton(int id, int x, int y, const wstring& msg) : Button(id, x, y, 150, 20, msg)
|
|
{
|
|
this->option = nullptr;
|
|
}
|
|
|
|
SmallButton::SmallButton(int id, int x, int y, int width, int height, const wstring& msg) : Button(id, x, y, width, height, msg)
|
|
{
|
|
this->option = nullptr;
|
|
}
|
|
|
|
SmallButton::SmallButton(int id, int x, int y, const Options::Option *item, const wstring& msg) : Button(id, x, y, 150, 20, msg)
|
|
{
|
|
this->option = item;
|
|
}
|
|
|
|
const Options::Option *SmallButton::getOption()
|
|
{
|
|
return option;
|
|
} |