the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3// 4J: Simple string wrapper that includes basic formatting information
4class HtmlString
5{
6public:
7 wstring text; // Text content of string
8 eMinecraftColour color; // Hex color
9 bool italics; // Show text in italics
10 bool indent; // Indent text
11
12 HtmlString(wstring text, eMinecraftColour color = eMinecraftColour_NOT_SET, bool italics = false, bool indent = false);
13 wstring ToString();
14
15 static wstring Compose(vector<HtmlString> *strings);
16};