10 lines
142 B
C#
10 lines
142 B
C#
namespace Pausable
|
|
{
|
|
public interface IPausable
|
|
{
|
|
bool IsPaused { get; }
|
|
void Pause();
|
|
void Resume();
|
|
}
|
|
}
|