mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 18:47:26 +08:00
21 lines
521 B
C#
21 lines
521 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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<LegacyReplayFrame> Frames { get; set; }
|
|
|
|
public FrameDataBundle(IEnumerable<LegacyReplayFrame> frames)
|
|
{
|
|
Frames = frames;
|
|
}
|
|
}
|
|
}
|