2020-04-20 20:28:36 +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.
|
|
|
|
|
|
2022-08-11 04:09:11 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
|
2020-04-20 20:28:36 +08: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-11 04:09:11 +08:00
|
|
|
|
public override LocalisableString Description => @"Play with ten keys.";
|
2020-04-20 20:28:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|