step-timeline/Scripts/Commands/IPausable.cs

13 lines
292 B
C#

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);
}
}