1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 18:52:50 +08:00
Files
osu-lazer/osu.Game/Rulesets/Mods/ModNoMod.cs
T
2025-08-21 09:00:44 +02:00

23 lines
778 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.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Graphics;
namespace osu.Game.Rulesets.Mods
{
/// <summary>
/// Indicates a type of mod that doesn't do anything.
/// </summary>
public sealed class ModNoMod : Mod
{
public override string Name => "No Mod";
public override string Acronym => "NM";
public override LocalisableString Description => "No mods applied.";
public override double ScoreMultiplier => 1;
public override IconUsage? Icon => OsuIcon.ModNoMod;
public override ModType Type => ModType.System;
}
}