osu/osu.Game/Rulesets/Replays/Replay.cs

12 lines
342 B
C#
Raw Normal View History

2017-03-04 10:02:36 +00: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 10:02:36 +00:00
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Replays
2017-03-04 10:02:36 +00:00
{
public class Replay
2017-03-04 10:02:36 +00:00
{
public List<ReplayFrame> Frames = new List<ReplayFrame>();
2017-03-04 10:02:36 +00:00
}
}