mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +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(
|
static const std::string kBuiltinDefinitionVectorSrc = R"BUILTIN_SRC(
|
||||||
|
|
||||||
-- TODO: this will be replaced with a built-in primitive type
|
-- 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: {
|
declare vector: {
|
||||||
create: @checked (x: number, y: number, z: number) -> vector,
|
create: @checked (x: number, y: number, z: number) -> vector,
|
||||||
|
|
Loading…
Add table
Reference in a new issue