// 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 clock which has a source that can be changed. /// public interface ISourceChangeableClock : IClock { /// /// The source clock. /// IClock Source { get; } /// /// Change the source clock. /// /// The new source clock. void ChangeSource(IClock source); } }