Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
on_area = function(s, x,y)
	if s.x == nil then return end
	if x < s.x then return end
	if x > s.x+s.w then return end
	if y < s.y then return end
	if y > s.y+s.h then return end
	return true
end