This commit is contained in:
aozhiwei 2023-09-07 16:19:52 +08:00
parent 9823133648
commit ed967899c4

View File

@ -3,6 +3,11 @@ 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