mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-22 13:45:16 +00:00
Add support for Bool and Number primitive types.
This commit is contained in:
@@ -20,7 +20,12 @@ pub enum RbxValue {
|
||||
String {
|
||||
value: String,
|
||||
},
|
||||
Bool {
|
||||
value: bool,
|
||||
},
|
||||
Number {
|
||||
value: f64,
|
||||
},
|
||||
|
||||
// TODO: Other primitives
|
||||
// TODO: Compound types like Vector3
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user