mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
22 lines
824 B
C#
22 lines
824 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;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
{
|
|
public class ManiaModFadeIn : Mod
|
|
{
|
|
public override string Name => "Fade In";
|
|
public override string ShortenedName => "FI";
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_hidden;
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
|
public override string Description => @"Keys appear out of nowhere!";
|
|
public override double ScoreMultiplier => 1;
|
|
public override bool Ranked => true;
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModFlashlight) };
|
|
}
|
|
}
|