Rename RbxItem -> RbxInstance

This commit is contained in:
Lucien Greathouse
2018-01-03 16:01:48 -08:00
parent f00152a9ac
commit d8bcbee463
7 changed files with 24 additions and 24 deletions

View File

@@ -2,10 +2,10 @@ use std::collections::HashMap;
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RbxItem {
pub struct RbxInstance {
pub name: String,
pub class_name: String,
pub children: Vec<RbxItem>,
pub children: Vec<RbxInstance>,
pub properties: HashMap<String, RbxValue>,
}