2017-11-29 13:20:15 +08: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 osu.Game.Rulesets.Replays;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Replays
|
|
|
|
{
|
|
|
|
public class ManiaReplayFrame : ReplayFrame
|
|
|
|
{
|
|
|
|
public override bool IsImportant => MouseX > 0;
|
|
|
|
|
2017-11-29 14:47:10 +08:00
|
|
|
public ManiaReplayFrame(double time, int activeColumns)
|
2017-11-29 17:18:36 +08:00
|
|
|
: base(time, activeColumns, null, ReplayButtonState.None)
|
2017-11-29 13:20:15 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|