class Async::Clock

def reset!

Reset the total elapsed time. If the clock is currently running, reset the start time to now.
def reset!
	@total = 0
	
	if @started
		@started = Clock.now
	end
end