graph drawing tool
font = function(fontsize)
	if Font == nil then Font = {} end
	if Font[fontsize] == nil then
		Font[fontsize] = love.graphics.newFont(fontsize)
	end
	return Font[fontsize]
end