sokoban.love/0156-on.touch_release

8 lines
245 B
Plaintext
Raw Normal View History

2023-12-26 17:28:16 +00:00
on.touch_release = function(id, x,y, dx,dy, pressure)
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