q5/types.go
aozhiwei ed967899c4 1
2023-09-07 16:19:52 +08:00

14 lines
201 B
Go

package q5
type TimerCb func (int32, *Args)
type Args []interface{}
type Module interface {
Init()
UnInit()
}
const TIMER_EXEC_EVENT = 1
const TIMER_DELETE_EVENT = 2
const TIMER_DESTORY_EVENT = 3