// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; using osu.Framework.Graphics.Transforms; namespace osu.Game.Storyboards.Commands { public interface IStoryboardCommand { /// /// The start time of the storyboard command. /// double StartTime { get; } /// /// The end time of the storyboard command. /// double EndTime { get; } /// /// Applies the transforms described by this storyboard command to the target drawable. /// /// The target drawable. /// The sequence of transforms applied to the target drawable. TransformSequence ApplyTransform(Drawable d); } }