mirror of
https://github.com/Insality/druid.git
synced 2025-09-27 18:12:19 +02:00
first iteration of trash cleaning
This commit is contained in:
29
example/example.gui.gui_script
Normal file
29
example/example.gui.gui_script
Normal 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
|
Reference in New Issue
Block a user