FreeKill/lua/lsp/qt.lua
notify 9ac89caa1f Random AI (#54)
* android: dont copy RSA key and test.lua(generated by fkp)

* remove debug code

* ai think

* fixbug: 100% cpu per thread

* init ai

* fix bug, next step is to remove all feasible

* remame vscode -> lsp

* add some lsp comment

* rewrite feasible

* Random AI

* fixbug: chooseplayer

* liuli

* move checkNoHuman to waitForAiReply

* prototype for cardLimitation skill

* add Exppattern:Parse to static.lua

* remove unnecessary static
2023-02-26 15:01:14 +08:00

23 lines
517 B
Lua

---@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