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