namespace Syntriax.Engine.Systems.Time; public interface IStopwatch : IReadOnlyStopwatch { void Start(); void Stop(); void Pause(); void Resume(); }