mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
28 lines
925 B
C#
28 lines
925 B
C#
// 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.Beatmaps;
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
using osu.Game.Rulesets.Mania.Judgements;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects
|
|
{
|
|
/// <summary>
|
|
/// Represents a hit object which has a single hit press.
|
|
/// </summary>
|
|
public class Note : ManiaHitObject
|
|
{
|
|
/// <summary>
|
|
/// The key-press hit window for this note.
|
|
/// </summary>
|
|
public HitWindows HitWindows { get; protected set; } = new HitWindows();
|
|
|
|
public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
|
{
|
|
base.ApplyDefaults(controlPointInfo, difficulty);
|
|
|
|
HitWindows = new HitWindows(difficulty.OverallDifficulty);
|
|
}
|
|
}
|
|
}
|