2018-01-12 17:35:28 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Replays
|
|
|
|
{
|
|
|
|
public class CatchReplayFrame : ReplayFrame
|
|
|
|
{
|
|
|
|
public override bool IsImportant => MouseX > 0;
|
|
|
|
|
2018-01-22 17:46:59 +08:00
|
|
|
public CatchReplayFrame(double time, float? x = null, ReplayButtonState button = ReplayButtonState.None)
|
|
|
|
: base(time, x ?? -1, null, button)
|
2018-01-12 17:35:28 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|