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 ITimer : IReadOnlyTimer
{
void TimerStart(double time);
void TimerStop();
void Start(double time);
void Stop();
void TimerPause();
void TimerResume();
void Pause();
void Resume();
}