mirror of
https://github.com/britzl/monarch.git
synced 2025-06-27 18:37:46 +02:00
13 lines
235 B
Plaintext
13 lines
235 B
Plaintext
function init(self)
|
|
print("init - screen1")
|
|
end
|
|
|
|
function final(self)
|
|
print("final - screen1")
|
|
end
|
|
|
|
function on_message(self, message_id, message, sender)
|
|
-- Add message-handling code here
|
|
-- Remove this function if not needed
|
|
end
|