summaryrefslogtreecommitdiffstats
path: root/src/Chat.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Chat.hpp')
-rw-r--r--src/Chat.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Chat.hpp b/src/Chat.hpp
new file mode 100644
index 0000000..4d147be
--- /dev/null
+++ b/src/Chat.hpp
@@ -0,0 +1,24 @@
+#pragma once
+
+#include <vector>
+
+struct TextModifier {
+ size_t offset;
+ size_t length;
+ enum {
+ Italic,
+ Bold,
+ Underline,
+ } type;
+};
+
+struct Chat {
+ std::vector<TextModifier> modifiers;
+ std::string text;
+
+ Chat(const std::string &str);
+
+ Chat() = default;
+
+ std::string ToJson() const;
+}; \ No newline at end of file