updated docs

This commit is contained in:
Evil Factory
2021-09-22 13:27:31 -03:00
parent 88eb227284
commit 772edcfe5b
5 changed files with 64 additions and 13 deletions

View File

@@ -12,17 +12,21 @@ CreateVector2, CreateVector3, CreateVector4 are globals.
]]
-- @code Vectors
local Vector2 = {}
local Vector3 = {}
local Vector4 = {}
--- Create Vector2
-- @treturn Vector2
-- @realm shared
function CreateVector2(path) end
function Vector2.__new(x, y) end
--- Create Vector3
-- @treturn Vector3
-- @realm shared
function CreateVector3(path) end
function Vector3.__new(x, y, z) end
--- Create Vector4
-- @treturn Vector4
-- @realm shared
function CreateVector4(path) end
function Vector4.__new(x, y, z, w) end