Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
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