From 90ad2e9731766ceb61ddc2e8853057025a70ae87 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Tue, 14 Mar 2017 15:50:36 +0900 Subject: [PATCH] Remove unused interface. --- osu.Game/Modes/Objects/IHitObjectConverter.cs | 20 ------------------- osu.Game/osu.Game.csproj | 1 - 2 files changed, 21 deletions(-) delete mode 100644 osu.Game/Modes/Objects/IHitObjectConverter.cs diff --git a/osu.Game/Modes/Objects/IHitObjectConverter.cs b/osu.Game/Modes/Objects/IHitObjectConverter.cs deleted file mode 100644 index 8f4bb05c0c..0000000000 --- a/osu.Game/Modes/Objects/IHitObjectConverter.cs +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2007-2017 ppy Pty Ltd . -// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE - -namespace osu.Game.Modes.Objects -{ - /// - /// Converts HitObjects to another mode. - /// - /// The type of HitObject to be converted to. - public interface IHitObjectConverter - where T : HitObject - { - /// - /// Converts a to another mode. - /// - /// The base HitObject to convert. - /// The converted HitObject. - T Convert(HitObject hitObject); - } -} diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index 3b924231d7..d2cdb69885 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -95,7 +95,6 @@ -