11 lines
217 B
Go
11 lines
217 B
Go
package node
|
|
|
|
// 治疗相关触发
|
|
func (this *EffectNode) OnBeforeHeal() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (this *EffectNode) OnHeal() bool {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|