2020-04-20 12:28:36 +00: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.
|
|
|
|
|
|
2022-08-10 20:09:11 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
|
2020-04-20 12:28:36 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
|
|
|
{
|
|
|
|
|
public class ManiaModKey10 : ManiaKeyMod
|
|
|
|
|
{
|
|
|
|
|
public override int KeyCount => 10;
|
|
|
|
|
public override string Name => "Ten Keys";
|
|
|
|
|
public override string Acronym => "10K";
|
2022-08-10 20:09:11 +00:00
|
|
|
|
public override LocalisableString Description => @"Play with ten keys.";
|
2024-01-31 13:59:35 +00:00
|
|
|
|
public override bool Ranked => false;
|
2020-04-20 12:28:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|