From 275084f025b81da78f2a6c5cb23bc4a846a7b909 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 10 Feb 2026 04:07:12 +0800 Subject: Refactor converter and replace built_res with resource generator --- built_res/src/structs/sentence.rs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 built_res/src/structs/sentence.rs (limited to 'built_res/src/structs') 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, -} - -pub enum Token { - Text(&'static str), - BoldText(&'static str), - ItalicText(&'static str), - BoldItalicText(&'static str), - Command(&'static str), -} -- cgit