2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-06-06 13:08:02 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Indicates a type of mod that doesn't do anything.
|
|
|
|
|
/// </summary>
|
2018-11-30 16:35:13 +08:00
|
|
|
|
public sealed class ModNoMod : Mod
|
2018-06-06 13:08:02 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Name => "No Mod";
|
2018-11-30 16:16:00 +08:00
|
|
|
|
public override string Acronym => "NM";
|
2018-06-06 13:08:02 +08:00
|
|
|
|
public override double ScoreMultiplier => 1;
|
|
|
|
|
}
|
|
|
|
|
}
|