Files
bl/logic/service/fight/node/hit.go

22 lines
442 B
Go

package node
import (
"blazing/logic/service/fight/input"
)
// 受击触发
func (this *EffectNode) Attack(opp *input.Input, eff *input.EffectID) {
}
// 受击触发
func (this *EffectNode) BeforeAttack(opp *input.Input, eff *input.EffectID) {
}
// 受击触发
func (this *EffectNode) Attacked(opp *input.Input, eff *input.EffectID) {
}
// 受击触发
func (this *EffectNode) BeforeAttacked(opp *input.Input, eff *input.EffectID) {
}