2018-01-09 12:41:57 +08:00
|
|
|
|
// 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
|
|
|
|
|
{
|
2018-03-14 11:07:03 +08:00
|
|
|
|
public override string Description => @"Keys fade out before you hit them!";
|
|
|
|
|
public override double ScoreMultiplier => 1;
|
2018-01-09 12:41:57 +08:00
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModFlashlight) };
|
|
|
|
|
}
|
|
|
|
|
}
|