13 lines
292 B
C#
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);
|
||
|
}
|
||
|
}
|