2023-05-13 10:07:25 +08:00
|
|
|
// 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>
|
2023-06-08 15:52:28 +08:00
|
|
|
public class ModSynesthesia : Mod
|
2023-05-13 10:07:25 +08:00
|
|
|
{
|
2023-06-08 15:52:28 +08:00
|
|
|
public override string Name => "Synesthesia";
|
|
|
|
public override string Acronym => "SY";
|
2023-05-13 13:13:39 +08:00
|
|
|
public override LocalisableString Description => "Colours hit objects based on the rhythm.";
|
2023-05-13 10:07:25 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2023-06-08 15:52:28 +08:00
|
|
|
public override ModType Type => ModType.Fun;
|
2023-05-13 10:07:25 +08:00
|
|
|
}
|
|
|
|
}
|