class Sus::Output::Progress

def increment(amount = 1)

Increase the amont of work done.
def increment(amount = 1)
	@current += amount
	
	@bar&.update(@current, @total, self.to_s)
	@lines&.redraw(0)
	
	return self
end