osu/osu.Game/Rulesets/Mods/ModRelax.cs

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

20 lines
672 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-04-13 09:19:50 +00:00
using System;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Mods
{
public abstract class ModRelax : Mod
{
public override string Name => "Relax";
public override string Acronym => "RX";
2020-01-14 13:22:00 +00:00
public override IconUsage? Icon => OsuIcon.ModRelax;
public override ModType Type => ModType.Automation;
2022-08-12 13:32:27 +00:00
public override double ScoreMultiplier => 0.1;
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay) };
}
2018-01-05 11:21:19 +00:00
}