11 lines
190 B
C#
11 lines
190 B
C#
namespace Syntriax.Engine.Systems.Time;
|
|
|
|
public interface ITimer : IReadOnlyTimer
|
|
{
|
|
void TimerStart(double time);
|
|
void TimerStop();
|
|
|
|
void TimerPause();
|
|
void TimerResume();
|
|
}
|