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