mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 19:58:13 +08:00
9ac89caa1f
* 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
21 lines
377 B
Lua
21 lines
377 B
Lua
---@meta
|
|
|
|
---@class fk.SQLite3
|
|
SQLite3 = {}
|
|
|
|
---@param filename string
|
|
---@return fk.SQLite3
|
|
function fk.OpenDatabase(filename)end
|
|
|
|
---@param db fk.SQLite3
|
|
---@param sql string
|
|
---@return string jsonData
|
|
function fk.SelectFromDb(db, sql)end
|
|
|
|
---@param db fk.SQLite3
|
|
---@param sql string
|
|
function fk.ExecSQL(db, sql)end
|
|
|
|
---@param db fk.SQLite3
|
|
function fk.CloseDatabase(db)end
|