FreeKill/lua/lsp/qt.lua

23 lines
517 B
Lua
Raw Normal View History

2022-03-30 08:33:56 +00:00
---@meta
---@return integer length
2022-03-30 08:33:56 +00:00
function SPlayerList:length()end
---@param e fk.ServerPlayer
2022-03-30 08:33:56 +00:00
function SPlayerList:append(e)end
---@param e fk.ServerPlayer
2022-03-30 08:33:56 +00:00
---@return boolean
function SPlayerList:contains(e)end
---@param index integer
---@return fk.ServerPlayer | nil
2022-03-30 08:33:56 +00:00
function SPlayerList:at(index)end
function SPlayerList:first()end
function SPlayerList:last()end
function SPlayerList:isEmpty()end
function SPlayerList:removeAt(index)end
function SPlayerList:removeAll()end
function SPlayerList:indexOf(e)end