14 lines
194 B
Go
14 lines
194 B
Go
package node
|
|
|
|
// 技能效果前
|
|
func (this *EffectNode) PreActive() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
// 激活回合,比如说镇魂歌秒杀
|
|
func (this *EffectNode) OnActive() bool {
|
|
return true
|
|
}
|