diff --git a/src/rbx.rs b/src/rbx.rs index 99f24d40..30cd2194 100644 --- a/src/rbx.rs +++ b/src/rbx.rs @@ -20,7 +20,12 @@ pub enum RbxValue { String { value: String, }, + Bool { + value: bool, + }, + Number { + value: f64, + }, - // TODO: Other primitives // TODO: Compound types like Vector3 }