Files
bl/logic/service/fight/node/fight.go
昔念 49b9e938f5 ```
refactor(controller): 优化控制器初始化与命令解析逻辑

- 重构 getCmd 和 ParseCmdTag
2025-12-11 10:32:39 +08:00

33 lines
756 B
Go

package node
import "blazing/logic/service/fight/input"
// 回合结束一次性effect清楚掉
func (e *EffectNode) Fight_Start() bool {
//战斗开始应该注入魂印
//panic("not implemented") // TODO: Implement
return true
}
func (e *EffectNode) OnBattleEnd() bool {
// panic("not implemented") // TODO: Implement
return true
}
func (e *EffectNode) EFFect_Befer(in *input.Input, effEffect input.Effect) bool {
return true
}
func (e *EffectNode) Action_end_ex() bool {
// panic("not implemented") // TODO: Implement
return true
}
func (e *EffectNode) Action_end() bool {
// panic("not implemented") // TODO: Implement
return true
}
func (e *EffectNode) HookAction() bool {
// panic("not implemented") // TODO: Implement
return true
}