namespace R0bbie.Timeline
{
/// <summary>
/// Interface to use on the commands that needs specific commands if the timeline is paused
/// </summary>
public interface IPausable
public void Pause();
public void Resume(float _elapsedTime);
}