summaryrefslogtreecommitdiff
path: root/built_res/src/structs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-10 04:07:12 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-10 04:07:12 +0800
commit275084f025b81da78f2a6c5cb23bc4a846a7b909 (patch)
treef8899947ad53534318c7d531f1b0df2506620d9f /built_res/src/structs
parentade7980b250d0d679355d9583edd03deed871ff2 (diff)
Refactor converter and replace built_res with resource generator
Diffstat (limited to 'built_res/src/structs')
-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),
-}