mirror of
https://github.com/britzl/monarch.git
synced 2025-06-27 10:27:49 +02:00
33 lines
688 B
Plaintext
33 lines
688 B
Plaintext
local monarch = require "monarch.monarch"
|
|
|
|
|
|
function init(self)
|
|
-- Add initialization code here
|
|
-- Remove this function if not needed
|
|
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 reload-handling code here
|
|
-- Remove this function if not needed
|
|
end
|