9 lines
151 B
C#
9 lines
151 B
C#
namespace Game.Scripts.Runtime.Abstractions
|
|
{
|
|
public interface IClock
|
|
{
|
|
float Elapsed { get; }
|
|
bool IsRunning { get; }
|
|
}
|
|
}
|