mirror of
https://github.com/Insality/druid
synced 2025-06-27 18:37:45 +02:00
12 lines
223 B
Lua
12 lines
223 B
Lua
local M = {}
|
|
|
|
--- input handler
|
|
-- @param action_id - input action id
|
|
-- @param action - input action
|
|
function M.on_input(instance, action_id, action)
|
|
instance.callback(instance.parent.parent)
|
|
return true
|
|
end
|
|
|
|
return M
|