2025-09-14 01:35:16 +08:00
|
|
|
package player
|
2025-09-04 03:05:37 +08:00
|
|
|
|
|
|
|
|
import (
|
2026-02-25 16:18:10 +08:00
|
|
|
"blazing/common/socket/errorcode"
|
2025-09-04 03:05:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AI_player struct {
|
2025-09-21 14:56:37 +00:00
|
|
|
baseplayer
|
2026-03-03 23:40:21 +08:00
|
|
|
|
2025-11-21 02:40:27 +08:00
|
|
|
CanCapture int
|
2025-11-26 15:25:10 +08:00
|
|
|
Prop [6]int8
|
2025-09-04 03:05:37 +08:00
|
|
|
}
|
|
|
|
|
|
2026-02-25 16:18:10 +08:00
|
|
|
func (p *AI_player) CanFight() errorcode.ErrorCode {
|
|
|
|
|
return 0
|
2025-11-20 05:57:29 +08:00
|
|
|
}
|