summaryrefslogtreecommitdiff
path: root/built_res/src/structs/sentence.rs
diff options
context:
space:
mode:
Diffstat (limited to 'built_res/src/structs/sentence.rs')
-rw-r--r--built_res/src/structs/sentence.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/built_res/src/structs/sentence.rs b/built_res/src/structs/sentence.rs
deleted file mode 100644
index 270d5f7..0000000
--- a/built_res/src/structs/sentence.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-pub struct Sentence<'a> {
- pub content_tokens: &'a [&'static Token],
- pub next_sentence: Option<crate::res_sentences::SentenceId>,
-}
-
-pub enum Token {
- Text(&'static str),
- BoldText(&'static str),
- ItalicText(&'static str),
- BoldItalicText(&'static str),
- Command(&'static str),
-}