Feature/timer (#3)

* add timer component

* remov old components folder
This commit is contained in:
Maxim Tuprikov
2019-03-27 22:19:47 +03:00
committed by GitHub
parent f660476046
commit 3996ba4b04
16 changed files with 61 additions and 986 deletions

View File

@@ -21,6 +21,10 @@ function init(self)
self.druid:new_button("button_3", function()
print("On button 3")
end)
self.druid:new_timer("text_1", 0.5, 0, function()
print("On timer end")
end)
end
function update(self, dt)