1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 13:07:25 +08:00
osu-lazer/osu.Game/Modes/Replays/Replay.cs

12 lines
339 B
C#
Raw Normal View History

2017-03-04 18:02:36 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
2017-03-04 18:02:36 +08:00
namespace osu.Game.Modes.Replays
2017-03-04 18:02:36 +08:00
{
public class Replay
2017-03-04 18:02:36 +08:00
{
public List<ReplayFrame> Frames = new List<ReplayFrame>();
2017-03-04 18:02:36 +08:00
}
}