2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-31 11:43:42 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Replays
|
2017-03-31 11:43:42 +08:00
|
|
|
|
{
|
|
|
|
|
public class ReplayFrame
|
|
|
|
|
{
|
|
|
|
|
public double Time;
|
|
|
|
|
|
2018-02-28 15:34:47 +08:00
|
|
|
|
public ReplayFrame()
|
2017-03-31 11:43:42 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-28 15:34:47 +08:00
|
|
|
|
public ReplayFrame(double time)
|
2017-03-31 11:43:42 +08:00
|
|
|
|
{
|
|
|
|
|
Time = time;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-29 13:20:15 +08:00
|
|
|
|
}
|