refactor(fight): 重构效果节点继承体系并完善Effect1实现

This commit is contained in:
1
2025-08-26 22:26:21 +00:00
parent 88b9c1f534
commit 3fa2cd2f3a
12 changed files with 82 additions and 58 deletions

View File

@@ -1,11 +1,11 @@
package node
// 技能效果前
func (this *Node) PreActive() bool {
func (this *EffectNode) PreActive() bool {
return true
}
func (f *Node) OnActive() bool {
func (f *EffectNode) OnActive() bool {
panic("not implemented") // TODO: Implement
}