// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable enable using System; using System.Collections.Generic; using MessagePack; using Newtonsoft.Json; using osu.Game.Replays.Legacy; using osu.Game.Scoring; namespace osu.Game.Online.Spectator { [Serializable] [MessagePackObject] public class FrameDataBundle { [Key(0)] public FrameHeader Header { get; set; } [Key(1)] public IEnumerable Frames { get; set; } public FrameDataBundle(ScoreInfo score, IEnumerable frames) { Frames = frames; Header = new FrameHeader(score); } [JsonConstructor] public FrameDataBundle(FrameHeader header, IEnumerable frames) { Header = header; Frames = frames; } } }