summaryrefslogtreecommitdiff
path: root/src/ui/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/text.h')
-rw-r--r--src/ui/text.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ui/text.h b/src/ui/text.h
new file mode 100644
index 0000000..3606d88
--- /dev/null
+++ b/src/ui/text.h
@@ -0,0 +1,14 @@
+#pragma once
+
+typedef enum TEXT_STYLE {
+ TEXT_STYLE_NORMAL = 0,
+ TEXT_STYLE_BOLD = 1,
+ TEXT_STYLE_SHADOWED = 2,
+ TEXT_STYLE_ITALIC = 3,
+ TEXT_STYLE_UNDER_STROKE = 4,
+ TEXT_STYLE_BLINKING = 5,
+ TEXT_STYLE_BLINKING2 = 6,
+ TEXT_STYLE_REVERSED = 7,
+ TEXT_STYLE_INVISIBLE = 8,
+ TEXT_STYLE_STROCK_TRHOUGH = 9,
+} TEXT_STYLE;