2023-04-09 05:35:35 +00:00
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-03-30 08:33:56 +00:00
|
|
|
---@meta
|
|
|
|
|
2022-03-31 05:29:23 +00:00
|
|
|
---@class fk.Player
|
2022-03-30 08:33:56 +00:00
|
|
|
FPlayer = {}
|
|
|
|
|
|
|
|
function FPlayer:getId()end
|
|
|
|
function FPlayer:getScreenName()end
|
|
|
|
function FPlayer:getAvatar()end
|
|
|
|
|
2023-06-23 14:18:11 +00:00
|
|
|
---@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
|
2023-06-23 14:18:11 +00:00
|
|
|
function FServerPlayer:setBusy(_) end
|
|
|
|
function FServerPlayer:isBusy(_) end
|
|
|
|
function FServerPlayer:setThinking(_) end
|
|
|
|
|
|
|
|
function FServerPlayer:getState() end
|
2024-04-19 12:53:19 +00:00
|
|
|
|
|
|
|
---@type any
|
|
|
|
fk.Self = nil
|