namespace Syntriax.Engine.Systems.Time;

public interface ITimer : IReadOnlyTimer
{
    void Start(double time);
    void Stop();

    void Pause();
    void Resume();
}