mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
19 lines
689 B
C#
19 lines
689 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModRelax : Mod
|
|
{
|
|
public override string Name => "Relax";
|
|
public override string Acronym => "RX";
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_relax;
|
|
public override ModType Type => ModType.Automation;
|
|
public override double ScoreMultiplier => 1;
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModNoFail), typeof(ModSuddenDeath) };
|
|
}
|
|
}
|