// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Timing { /// /// A basic clock for keeping time. /// public interface IClock { /// /// The current time of this clock, in milliseconds. /// double CurrentTime { get; } /// /// The rate this clock is running at, relative to real-time. /// double Rate { get; } /// /// Whether this clock is currently running or not. /// bool IsRunning { get; } } }