2022-07-12 22:07:26 +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-07-13 06:35:53 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2022-08-10 20:09:11 +00:00
|
|
|
using osu.Framework.Localisation;
|
2022-07-12 22:07:26 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
|
|
|
public class OsuModSingleTap : InputBlockingMod
|
|
|
|
{
|
|
|
|
public override string Name => @"Single Tap";
|
2022-07-16 08:07:55 +00:00
|
|
|
public override string Acronym => @"SG";
|
2022-08-10 20:09:11 +00:00
|
|
|
public override LocalisableString Description => @"You must only use one key!";
|
2022-07-13 06:35:53 +00:00
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAlternate) }).ToArray();
|
2022-07-12 22:07:26 +00:00
|
|
|
|
2022-07-13 16:40:44 +00:00
|
|
|
protected override bool CheckValidNewAction(OsuAction action) => LastAcceptedAction == null || LastAcceptedAction == action;
|
2022-07-12 22:07:26 +00:00
|
|
|
}
|
|
|
|
}
|