1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 05:36:05 +08:00

Remove redundant class.

This commit is contained in:
Huo Yaoyuan 2016-10-24 19:02:12 +08:00
parent 0da78c19a2
commit d9fc04748e

View File

@ -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;
}
}
}