// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; using osu.Game.Users; namespace osu.Game.Rulesets.Replays { public class Replay { public User User; public List Frames = new List(); } }