11 lines
167 B
C#
11 lines
167 B
C#
namespace Syntriax.Engine.Systems.Time;
|
|
|
|
public interface IStopwatch : IReadOnlyStopwatch
|
|
{
|
|
void Start();
|
|
void Stop();
|
|
|
|
void Pause();
|
|
void Resume();
|
|
}
|