sokoban.love/0156-on.touch_release

9 lines
275 B
Plaintext

on.touch_release = function(id, x,y, dx,dy, pressure)
if Show_code then return end
if car.touchreleased then
call_protected(car.touchreleased, id, x,y, dx,dy, pressure)
end
if car.touch_release then
call_protected(car.touch_release, id, x,y, dx,dy, pressure)
end
end