mirror of
https://github.com/ppy/osu
synced 2024-12-14 02:46:27 +00:00
27 lines
801 B
C#
27 lines
801 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Linq;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
using osu.Game.Rulesets.Osu.Utils;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
{
|
|
public class OsuModHardRock : ModHardRock, IApplicableToHitObject
|
|
{
|
|
public override double ScoreMultiplier => 1.06;
|
|
|
|
public void ApplyToHitObject(HitObject hitObject)
|
|
{
|
|
var osuObject = (OsuHitObject)hitObject;
|
|
|
|
OsuHitObjectGenerationUtils.ReflectOsuHitObjectVertically(osuObject);
|
|
}
|
|
}
|
|
}
|