mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
23 lines
533 B
Lua
23 lines
533 B
Lua
|
---@meta
|
||
|
|
||
|
---@return number length
|
||
|
function SPlayerList:length()end
|
||
|
|
||
|
---@param e freekill.ServerPlayer
|
||
|
function SPlayerList:append(e)end
|
||
|
|
||
|
---@param e freekill.ServerPlayer
|
||
|
---@return boolean
|
||
|
function SPlayerList:contains(e)end
|
||
|
|
||
|
---@param index number
|
||
|
---@return freekill.ServerPlayer | nil
|
||
|
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
|