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