Druid-Extension/test/helper/mock_input.lua
2022-09-11 12:16:20 +03:00

23 lines
228 B
Lua

local M = {}
function M.click_pressed(x, y)
return hash("touch"), {
pressed = true,
x = x,
y = y,
}
end
function M.click_released(x, y)
return hash("touch"), {
released = true,
x = x,
y = y,
}
end
return M