-- luacheck: ignore 111
--[[--
Class providing vector functionality.
These are the XNA Vectors, you can find all the functions and fields here:
XNA Vector2
XNA Vector3
XNA Vector4
Access them via Vector2.\*, Vector3.\*, Vector4.\*
CreateVector2, CreateVector3, CreateVector4 are globals.
]]
-- @code Vectors
local Vector2 = {}
local Vector3 = {}
local Vector4 = {}
--- Create Vector2
-- @treturn Vector2
-- @realm shared
function Vector2.__new(x, y) end
--- Create Vector3
-- @treturn Vector3
-- @realm shared
function Vector3.__new(x, y, z) end
--- Create Vector4
-- @treturn Vector4
-- @realm shared
function Vector4.__new(x, y, z, w) end