2021-12-23 12:48:09 -05:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2021-12-24 10:38:44 -05:00
|
|
|
use ::serde::Deserialize;
|
2021-12-23 12:48:09 -05:00
|
|
|
|
|
|
|
use super::Renderable;
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct Prop {
|
|
|
|
pub name: String,
|
|
|
|
pub renderable: Option<Renderable>,
|
|
|
|
pub hidden: Option<bool>,
|
|
|
|
pub blocks_tile: Option<bool>,
|
|
|
|
pub blocks_visibility: Option<bool>,
|
|
|
|
pub door_open: Option<bool>,
|
|
|
|
pub entry_trigger: Option<EntryTrigger>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct EntryTrigger {
|
|
|
|
pub effects: HashMap<String, String>,
|
|
|
|
}
|