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; } } }