zz_data/core/
text.rs

1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

/// Represents text parsed from game files.
#[derive(Debug, Serialize, Deserialize)]
pub struct Text {
    pub id: String,
    pub content_length: i32,
    pub content: String,
    pub text_type: i32,
    pub mark: String
}