1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Remove unused interface

This commit is contained in:
Dean Herbert 2023-06-26 16:32:04 +09:00
parent ec20942830
commit c8e081c2b6
3 changed files with 2 additions and 7 deletions

View File

@ -248,10 +248,6 @@ namespace osu.Game.Rulesets.UI
void Attach(ClicksPerSecondCalculator calculator);
}
public interface IAttachableSkinComponent
{
}
public class RulesetInputManagerInputState<T> : InputState
where T : struct
{

View File

@ -8,7 +8,7 @@ using osu.Game.Rulesets.UI;
namespace osu.Game.Screens.Play.HUD.ClicksPerSecond
{
public partial class ClicksPerSecondCalculator : Component, IAttachableSkinComponent
public partial class ClicksPerSecondCalculator : Component
{
private readonly List<double> timestamps = new List<double>();

View File

@ -6,11 +6,10 @@ using System.Collections.Generic;
using osu.Framework.Bindables;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.UI;
namespace osu.Game.Screens.Play.HUD
{
public partial class KeyCounterController : CompositeComponent, IAttachableSkinComponent
public partial class KeyCounterController : CompositeComponent
{
public readonly Bindable<bool> IsCounting = new BindableBool(true);