Add data_list_static_grid example

This commit is contained in:
Insality
2021-04-05 00:21:06 +03:00
parent 3a1cd8d210
commit 8a8a5e22a0
14 changed files with 1581 additions and 10 deletions

View File

@@ -0,0 +1,25 @@
local druid = require("druid.druid")
function init(self)
self.druid = druid.new(self)
end
function final(self)
self.druid:final()
end
function update(self, dt)
self.druid:update(dt)
end
function on_message(self, message_id, message, sender)
self.druid:on_message(message_id, message, sender)
end
function on_input(self, action_id, action)
return self.druid:on_input(action_id, action)
end