Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
409 B · 15 lines
C
at main
123456789101112131415#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();};