1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Rulesets/Mods/ModNoMod.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
758 B
C#
Raw Normal View History

// 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
2019-11-15 16:57:40 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
2019-11-15 16:57:40 +08:00
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";
public override string Acronym => "NM";
public override LocalisableString Description => "No mods applied.";
2018-06-06 13:08:02 +08:00
public override double ScoreMultiplier => 1;
2020-01-14 21:22:00 +08:00
public override IconUsage? Icon => FontAwesome.Solid.Ban;
2019-11-15 16:57:40 +08:00
public override ModType Type => ModType.System;
2018-06-06 13:08:02 +08:00
}
}