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