diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-12-28 08:03:23 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-12-28 08:03:23 +0330 |
commit | d7802371b56734446a16962363322282ba772257 (patch) | |
tree | 8b5a62d12b080381e4a512b107e675a3ad14186b /src/ui/text.h | |
parent | 55d29d0df8681efe01e88e0475c8512c44ec4bc4 (diff) |
added many stuff which I can't even remember
Diffstat (limited to 'src/ui/text.h')
-rw-r--r-- | src/ui/text.h | 14 |
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; |