truegrf 2.1.0

TrueGRF YAML to GRF compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct NewGRFGeneral {
    pub version: u32,
    pub grfid: String,
    pub name: String,
    pub url: String,
    pub description: String,
    pub r#type: String,
}