mirror of
https://github.com/osukey/osukey.git
synced 2025-05-06 06:07:26 +09:00
18 lines
371 B
C#
18 lines
371 B
C#
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;
|
|
}
|
|
}
|
|
}
|