Files
bl/logic/service/fight/input/itemover.go

13 lines
158 B
Go
Raw Normal View History

package input
var FuncM = make(map[int64]FuncI, 0)
func InitFunc(id int64, t FuncI) {
FuncM[id] = t
}
func GetFunc(id int64) FuncI {
return FuncM[id]
}