mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 10:47:22 +09:00
Renamed all instances of Taiko's InputBlockingMod to TaikoInputBlockingMod
This commit is contained in:
parent
715df42a69
commit
b883c6af34
@ -19,7 +19,7 @@ using osu.Game.Rulesets.Taiko.UI;
|
|||||||
|
|
||||||
namespace osu.Game.Rulesets.Taiko.Mods
|
namespace osu.Game.Rulesets.Taiko.Mods
|
||||||
{
|
{
|
||||||
public abstract partial class InputBlockingMod : Mod, IApplicableToDrawableRuleset<TaikoHitObject>, IUpdatableByPlayfield
|
public abstract partial class TaikoInputBlockingMod : Mod, IApplicableToDrawableRuleset<TaikoHitObject>, IUpdatableByPlayfield
|
||||||
{
|
{
|
||||||
public override double ScoreMultiplier => 1.0;
|
public override double ScoreMultiplier => 1.0;
|
||||||
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModRelax), typeof(TaikoModCinema) };
|
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(ModRelax), typeof(TaikoModCinema) };
|
||||||
@ -117,9 +117,9 @@ namespace osu.Game.Rulesets.Taiko.Mods
|
|||||||
|
|
||||||
private partial class InputInterceptor : Component, IKeyBindingHandler<TaikoAction>
|
private partial class InputInterceptor : Component, IKeyBindingHandler<TaikoAction>
|
||||||
{
|
{
|
||||||
private readonly InputBlockingMod mod;
|
private readonly TaikoInputBlockingMod mod;
|
||||||
|
|
||||||
public InputInterceptor(InputBlockingMod mod)
|
public InputInterceptor(TaikoInputBlockingMod mod)
|
||||||
{
|
{
|
||||||
this.mod = mod;
|
this.mod = mod;
|
||||||
}
|
}
|
@ -5,7 +5,7 @@ using osu.Framework.Localisation;
|
|||||||
|
|
||||||
namespace osu.Game.Rulesets.Taiko.Mods
|
namespace osu.Game.Rulesets.Taiko.Mods
|
||||||
{
|
{
|
||||||
public class TaikoModSingleTap : InputBlockingMod
|
public class TaikoModSingleTap : TaikoInputBlockingMod
|
||||||
{
|
{
|
||||||
public override string Name => @"Single Tap";
|
public override string Name => @"Single Tap";
|
||||||
public override string Acronym => @"SG";
|
public override string Acronym => @"SG";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user