mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
9a951fdbfe
在所有代码中添加了许可证标记头
16 lines
255 B
Lua
16 lines
255 B
Lua
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
-- Trust AI
|
|
|
|
---@class TrustAI: AI
|
|
local TrustAI = AI:subclass("TrustAI")
|
|
|
|
local trust_cb = {}
|
|
|
|
function TrustAI:initialize(player)
|
|
AI.initialize(self, player)
|
|
self.cb_table = trust_cb
|
|
end
|
|
|
|
return TrustAI
|