mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-07 13:58:10 +00:00
refactor: unglob std::wstring
This commit is contained in:
@@ -9,14 +9,14 @@ protected:
|
||||
int h;
|
||||
public:
|
||||
int x, y;
|
||||
wstring msg;
|
||||
std::wstring msg;
|
||||
int id;
|
||||
bool active;
|
||||
bool visible;
|
||||
|
||||
Button(int id, int x, int y, const wstring& msg);
|
||||
Button(int id, int x, int y, int w, int h, const wstring& msg);
|
||||
void init(int id, int x, int y, int w, int h, const wstring& msg); // 4J - added
|
||||
Button(int id, int x, int y, const std::wstring& msg);
|
||||
Button(int id, int x, int y, int w, int h, const std::wstring& msg);
|
||||
void init(int id, int x, int y, int w, int h, const std::wstring& msg); // 4J - added
|
||||
protected:
|
||||
virtual int getYImage(bool hovered);
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user