refactor: timer methods names cleaned up

This commit is contained in:
2025-04-06 17:26:57 +03:00
parent 98c9dde98a
commit 6f425776cc
6 changed files with 27 additions and 27 deletions

View File

@@ -2,9 +2,9 @@ namespace Syntriax.Engine.Systems.Time;
public interface IStopwatch : IReadOnlyStopwatch
{
void StopwatchStart();
void StopwatchStop();
void Start();
void Stop();
void StopwatchPause();
void StopwatchResume();
void Pause();
void Resume();
}