1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 14:27:46 +08:00

16 lines
396 B
C#
Raw Normal View History

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