11 lines
170 B
C#
11 lines
170 B
C#
namespace Syntriax.Engine.Systems.Time;
|
|
|
|
public interface ITimer : IReadOnlyTimer
|
|
{
|
|
void Start(double time);
|
|
void Stop();
|
|
|
|
void Pause();
|
|
void Resume();
|
|
}
|