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
|
|
|
|
|
|
2017-03-31 14:59:53 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-04-18 20:55:44 +08:00
|
|
|
|
using osu.Game.Users;
|
2017-03-04 18:02:36 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Replays
|
2017-03-04 18:02:36 +08:00
|
|
|
|
{
|
2017-03-31 14:59:53 +08:00
|
|
|
|
public class Replay
|
2017-03-04 18:02:36 +08:00
|
|
|
|
{
|
2017-04-18 20:55:44 +08:00
|
|
|
|
public User User;
|
|
|
|
|
|
2017-03-31 14:59:53 +08:00
|
|
|
|
public List<ReplayFrame> Frames = new List<ReplayFrame>();
|
2017-03-04 18:02:36 +08:00
|
|
|
|
}
|
2017-04-18 21:31:52 +08:00
|
|
|
|
}
|