FreeKill/lua/lsp/qt.lua
notify 9a951fdbfe
Spdx license (#109)
在所有代码中添加了许可证标记头
2023-04-09 13:35:35 +08:00

25 lines
563 B
Lua

-- SPDX-License-Identifier: GPL-3.0-or-later
---@meta
---@return integer length
function SPlayerList:length()end
---@param e fk.ServerPlayer
function SPlayerList:append(e)end
---@param e fk.ServerPlayer
---@return boolean
function SPlayerList:contains(e)end
---@param index integer
---@return fk.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