1
0
mirror of https://github.com/ppy/osu.git synced 2024-05-15 01:10:21 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Mods/ManiaModHardRock.cs
2024-01-31 14:59:35 +01:00

14 lines
386 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 osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Mania.Mods
{
public class ManiaModHardRock : ModHardRock
{
public override double ScoreMultiplier => 1;
public override bool Ranked => false;
}
}