Construtor

	TimeLine(fps: Number, frames: Number)
	
		Gera uma instncia de TimeLine.
		
			fps velocidade da animao em fps
			frames quantidade de frames
			
	


Propriedades

	TimeLine.current: Integer Mantm o frame atual.
	TimeLine.frames: Integer Quantidade total de frames.			
	TimeLine.fps: Integer Velocidade em frames por segundo.
	TimeLine.running: Boolean Indica se a animao est sendo executada.
	TimeLine.time: Date Guarda a data em que foi iniciada animao.	


Mtodos

	TimeLine.start([current: Number = 0]): void
	
		Inicia a animao.
		
			current define o frame inicial, o default  0
		
		

	TimeLine.stop(void): void
	Pra a animao.


Eventos

	TimeLine.onstart: function(): void
	Chamado ao iniciar a animao.
			
	TimeLine.onframe: function(): void
	Chamado para cada frame da animao.
			
	TimeLine.onstop: function(): void
	Chamado ao interromper a animao.
