// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using osu.Game.Replays.Legacy; namespace osu.Game.Online.Spectator { [Serializable] public class FrameDataBundle { public IEnumerable Frames { get; set; } public FrameDataBundle(IEnumerable frames) { Frames = frames; } } }