feat: time systems added

This commit is contained in:
2025-03-30 20:29:26 +03:00
parent b73c9ed0ae
commit 7a1dd7eb1a
10 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Syntriax.Engine.Systems.Time;
public interface ITimer : IReadOnlyTimer
{
void TimerStart(double time);
void TimerStop();
void TimerPause();
void TimerResume();
}