Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
on.mouse_move = function(x,y, dx,dy, is_touch)
	if not Show_code then
		if car.mousemoved then
			call_protected(car.mousemoved, x,y, dx,dy, is_touch)
		end
		if car.mouse_move then
			call_protected(car.mouse_move, x,y, dx,dy, is_touch)
		end
	end
end