mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
32b540268e
Closes #1611
18 lines
546 B
C#
18 lines
546 B
C#
// 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;
|
|
|
|
public CatchReplayFrame(double time, float? x = null, ReplayButtonState button = ReplayButtonState.None)
|
|
: base(time, x ?? -1, null, button)
|
|
{
|
|
}
|
|
}
|
|
}
|