2023-02-14 05:25:52 +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.Taiko.Mods
|
|
|
|
{
|
2023-02-27 18:30:57 +08:00
|
|
|
public class TaikoModSingleTap : TaikoInputBlockingMod
|
2023-02-14 05:25:52 +08:00
|
|
|
{
|
|
|
|
public override string Name => @"Single Tap";
|
|
|
|
public override string Acronym => @"SG";
|
|
|
|
public override LocalisableString Description => @"You must only use one key!";
|
|
|
|
|
|
|
|
protected override bool CheckValidNewAction(TaikoAction action) => LastAcceptedDonAction == null || LastAcceptedDonAction == action || LastAcceptedKatAction == null || LastAcceptedKatAction == action;
|
|
|
|
}
|
|
|
|
}
|