feat: time systems added
This commit is contained in:
10
Engine.Systems/Time/ITimer.cs
Normal file
10
Engine.Systems/Time/ITimer.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Syntriax.Engine.Systems.Time;
|
||||
|
||||
public interface ITimer : IReadOnlyTimer
|
||||
{
|
||||
void TimerStart(double time);
|
||||
void TimerStop();
|
||||
|
||||
void TimerPause();
|
||||
void TimerResume();
|
||||
}
|
Reference in New Issue
Block a user