mirror of
https://github.com/imezx/Warp.git
synced 2026-03-18 00:44:16 +00:00
chore(docs): update buffer.md
This commit is contained in:
parent
b6fbc08111
commit
0271c0e86d
1 changed files with 20 additions and 23 deletions
|
|
@ -22,32 +22,29 @@ Define strict data schemas for optimized serialization and type safety.
|
||||||
"nil",
|
"nil",
|
||||||
|
|
||||||
-- Numeric types
|
-- Numeric types
|
||||||
"uint8",
|
"u8",
|
||||||
"uint16",
|
"u16",
|
||||||
"uint32",
|
"u32",
|
||||||
"int8",
|
"i8",
|
||||||
"int16",
|
"i16",
|
||||||
"int32",
|
"i32",
|
||||||
"float32",
|
"f16",
|
||||||
"float64",
|
"f32",
|
||||||
|
"f64",
|
||||||
|
|
||||||
-- Roblox types
|
-- Roblox types
|
||||||
"buffer"
|
"buffer"
|
||||||
"Vector2",
|
"vector2",
|
||||||
"Vector3",
|
"vector3",
|
||||||
"CFrame",
|
"cframe",
|
||||||
"Color3",
|
"color3",
|
||||||
"BrickColor",
|
"instance",
|
||||||
"Instance",
|
|
||||||
"EnumItem",
|
-- other types
|
||||||
"Enum",
|
"optional",
|
||||||
"UDim2",
|
"array",
|
||||||
"UDim",
|
"map",
|
||||||
"Rect",
|
"struct",
|
||||||
"NumberRange",
|
|
||||||
"Ray",
|
|
||||||
"ColorSequence",
|
|
||||||
"NumberSequence",
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue