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