mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
give vector its fields
This commit is contained in:
parent
e905e30570
commit
dac61aa89f
1 changed files with 5 additions and 1 deletions
|
@ -455,7 +455,11 @@ declare buffer: {
|
|||
static const std::string kBuiltinDefinitionVectorSrc = R"BUILTIN_SRC(
|
||||
|
||||
-- TODO: this will be replaced with a built-in primitive type
|
||||
declare class vector end
|
||||
declare class vector
|
||||
x: number,
|
||||
y: number,
|
||||
z: number,
|
||||
end
|
||||
|
||||
declare vector: {
|
||||
create: @checked (x: number, y: number, z: number) -> vector,
|
||||
|
|
Loading…
Add table
Reference in a new issue