mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
16 lines
542 B
C#
16 lines
542 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.Rulesets.Mods;
|
|||
|
|
|||
|
namespace osu.Game.Rulesets.Mania.Mods
|
|||
|
{
|
|||
|
public class ManiaModHidden : ModHidden
|
|||
|
{
|
|||
|
public override string Description => @"The notes fade out before you hit them!";
|
|||
|
public override double ScoreMultiplier => 1.0;
|
|||
|
public override Type[] IncompatibleMods => new[] { typeof(ModFlashlight) };
|
|||
|
}
|
|||
|
}
|