mirror of
https://github.com/bakpakin/tiny-ecs.git
synced 2026-07-22 07:56:52 -06:00
13 lines
204 B
Lua
13 lines
204 B
Lua
local TimerEvent = class "TimerEvent"
|
|
|
|
function TimerEvent:init(time, fn)
|
|
self.lifetime = time
|
|
self.timerCallback = fn
|
|
end
|
|
|
|
function TimerEvent:onLifeover()
|
|
self.timerCallback()
|
|
end
|
|
|
|
return TimerEvent
|