Start rework examples system

This commit is contained in:
Insality
2021-04-04 12:46:28 +03:00
parent 995b16ad37
commit 24237899af
14 changed files with 14888 additions and 12591 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