steed/stead/click.lua
2010-06-07 13:53:00 +00:00

15 lines
303 B
Lua

input.click = function(s, press, mb, x, y, px, py)
if press and px then
return "click "..px..','..py;
end
end
game.action = hook(game.action,
function(f, s, cmd, x, y, ...)
if cmd == 'click' then
return call(here(), 'click', x, y);
end
if f then return f(s, cmd, x, y, unpack(arg)) end
end)