mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 20:47:51 +08:00
d07437f810
Fixed null checking in ApplyToDrawableHitObject Renamed mod to "Synesthesia" Moved to the "Fun" mod category
20 lines
696 B
C#
20 lines
696 B
C#
// 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.
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
/// <summary>
|
|
/// Mod that colours hitobjects based on the musical division they are on
|
|
/// </summary>
|
|
public class ModSynesthesia : Mod
|
|
{
|
|
public override string Name => "Synesthesia";
|
|
public override string Acronym => "SY";
|
|
public override LocalisableString Description => "Colours hit objects based on the rhythm.";
|
|
public override double ScoreMultiplier => 1;
|
|
public override ModType Type => ModType.Fun;
|
|
}
|
|
}
|