rust-rl/src/raws/prop_structs.rs
2023-07-25 03:50:50 +01:00

12 lines
297 B
Rust

use super::Renderable;
use serde::Deserialize;
use std::collections::HashMap;
#[derive(Deserialize, Debug)]
pub struct Prop {
pub id: String,
pub name: String,
pub renderable: Option<Renderable>,
pub flags: Option<Vec<String>>,
pub effects: Option<HashMap<String, String>>,
}