first iteration of trash cleaning

This commit is contained in:
Alexey Gulev
2019-03-25 22:38:50 +01:00
parent 00e984efdc
commit e80ba7106b
18 changed files with 152 additions and 42 deletions

View File

@@ -0,0 +1,29 @@
local druid = require "druid.druid"
function init(self)
end
function final(self)
-- Add finalization code here
-- Remove this function if not needed
end
function update(self, dt)
-- Add update code here
-- Remove this function if not needed
end
function on_message(self, message_id, message, sender)
-- Add message-handling code here
-- Remove this function if not needed
end
function on_input(self, action_id, action)
-- Add input-handling code here
-- Remove this function if not needed
end
function on_reload(self)
-- Add input-handling code here
-- Remove this function if not needed
end