sokoban.love/0155-on.touch_press

9 lines
267 B
Plaintext
Raw Normal View History

2023-12-26 17:28:16 +00:00
on.touch_press = function(id, x,y, dx,dy, pressure)
if Show_code then return end
2023-12-26 17:28:16 +00:00
if car.touchpressed then
call_protected(car.touchpressed, id, x,y, dx,dy, pressure)
end
if car.touch_press then
call_protected(car.touch_press, id, x,y, dx,dy, pressure)
end
end