22 lines
353 B
Go
22 lines
353 B
Go
package task
|
|
|
|
import (
|
|
"mt"
|
|
"jccommon"
|
|
)
|
|
|
|
type recharge struct {
|
|
}
|
|
|
|
func (this* recharge) init() {
|
|
mt.Table.Contract.Traverse(func (ele *mt.Contract) bool {
|
|
if ele.GetName() == jccommon.CONTRACT_NAME_GameItemMall {
|
|
//go this.processLockAndUnLockEvent(ele.GetNetId(), ele.GetAddress())
|
|
}
|
|
return true
|
|
})
|
|
}
|
|
|
|
func (this* recharge) unInit() {
|
|
}
|