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 {
    id: String,
    content_length: i32,
    content: String,
    text_type: i32,
    mark: String
}