G42WRYFRKUYSVRZMVHKTDTX63VBYE5IUSJLVRMTTMRIDGX6TMHUAC
OLX2RRDI4AI6HMMIMWYEJDJPTFB7ME3IGPBDVJGHQ6BRTE7BQGDQC
RHARLLIQPGKVXNYQSIAZWILUI6F3CWMZ3ABJVI52IC3RBRSWPR5AC
N2NUGNN4E37TNLC6JZE4H4HKJZPNVBV4VYTLXW57AP5BOU4ZK7LQC
WZZGVKSGCAEPDTHCT4IKNNAWDHUEATGOAT4FBLQUPF64CSJSNVJQC
OTIBCAUJ3KDQJLVDN3A536DLZGNRYMGJLORZVR3WLCGXGO6UGO6AC
R5QXEHUIZLELJGGCZAE7ATNS3CLRJ7JFRENMGH4XXH24C5WABZDQC
5OVKHVY6TJK53NCEUGSFBMHDENBJ25IEZNBWCI6QRCRLRKG5K7NAC
* `on.mouse_move(x,y, dx,dy, istouch)` -- called when you move the mouse.
Provides in `x` and `y` the point on the screen at which the click occurred
and in `dx` and `dy` the amount moved since the previous call of
`mouse_move`.
(Based on [LÖVE](https://love2d.org/wiki/love.mousemoved).)
on.mouse_move = function(x,y, dx,dy, istouch)
if car.mousemoved then
call_protected(car.mousemoved, x,y, dx,dy, istouch)
end
if car.mouse_move then
call_protected(car.mouse_move, x,y, dx,dy, istouch)
end
end