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

16 lines
200 B
Go
Raw Normal View History

package node
// 先手选择前
func (this *EffectNode) BeforeSort() bool {
return true
}
func (this *EffectNode) OnSort() bool {
//todo 这里待实现对action先手的判断
return true
}