mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
18 lines
378 B
Lua
18 lines
378 B
Lua
local M = {}
|
|
|
|
M.A_TOUCH = hash("touch")
|
|
M.A_TEXT = hash("text")
|
|
M.A_BACKSPACE = hash("backspace")
|
|
M.A_ENTER = hash("enter")
|
|
M.A_ANDR_BACK = hash("back")
|
|
|
|
M.LAYOUT_CHANGED = hash("layout_changed")
|
|
M.ON_MESSAGE = hash("on_message")
|
|
M.ON_INPUT = hash("on_input")
|
|
M.ON_SWIPE = hash("on_swipe")
|
|
M.ON_UPDATE = hash("on_update")
|
|
|
|
M.RELEASED = "released"
|
|
M.PRESSED = "pressed"
|
|
|
|
return M |