FreeKill/lua/lsp/player.lua

26 lines
592 B
Lua
Raw Permalink Normal View History

-- SPDX-License-Identifier: GPL-3.0-or-later
2022-03-30 08:33:56 +00:00
---@meta
---@class fk.Player
2022-03-30 08:33:56 +00:00
FPlayer = {}
function FPlayer:getId()end
function FPlayer:getScreenName()end
function FPlayer:getAvatar()end
---@class fk.ServerPlayer : fk.Player
FServerPlayer = {}
2022-03-30 08:33:56 +00:00
function FServerPlayer:doRequest(command,jsonData,timeout)end
function FServerPlayer:waitForReply(timeout)end
function FServerPlayer:doNotify(command,jsonData)end
function FServerPlayer:setBusy(_) end
function FServerPlayer:isBusy(_) end
function FServerPlayer:setThinking(_) end
function FServerPlayer:getState() end
---@type any
fk.Self = nil