From d9fc04748e761a5f516109ce8fd2c225220168d1 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Mon, 24 Oct 2016 19:02:12 +0800 Subject: [PATCH] Remove redundant class. --- osu.Game/Overlays/MusicController.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index e8592a852d..74c3d3392b 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -252,15 +252,4 @@ namespace osu.Game.Overlays protected override void PopOut() => FadeOut(500); } - - public class ClickableTextAwesome : TextAwesome - { - public Action Action; - - protected override bool OnClick(InputState state) - { - Action?.Invoke(); - return true; - } - } }