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