mirror of
https://github.com/britzl/monarch.git
synced 2025-06-27 10:27:49 +02:00
14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
function init(self)
|
|
print("init - screen2")
|
|
end
|
|
|
|
function final(self)
|
|
print("final - screen2")
|
|
end
|
|
|
|
function on_message(self, message_id, message, sender)
|
|
if message_id == hash("foobar") then
|
|
_G.screen2_foobar = message or true
|
|
end
|
|
end
|