Files
2025-10-26 14:17:31 +01:00

9 lines
151 B
C#

namespace Game.Scripts.Runtime.Abstractions
{
public interface IClock
{
float Elapsed { get; }
bool IsRunning { get; }
}
}