Add support for Bool and Number primitive types.

This commit is contained in:
Lucien Greathouse
2018-02-03 23:16:29 -08:00
parent 72557c9d23
commit c5f8247543

View File

@@ -20,7 +20,12 @@ pub enum RbxValue {
String {
value: String,
},
Bool {
value: bool,
},
Number {
value: f64,
},
// TODO: Other primitives
// TODO: Compound types like Vector3
}