mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
osu.Game.Overlays.BeatmapOptions -> osu.Game.Screens.Select.Options
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Game.Graphics;
|
||||
|
||||
namespace osu.Game.Screens.Select.Options
|
||||
{
|
||||
public class BeatmapOptionsDeleteButton : BeatmapOptionsButton
|
||||
{
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colour)
|
||||
{
|
||||
ButtonColour = colour.Pink;
|
||||
}
|
||||
|
||||
public BeatmapOptionsDeleteButton()
|
||||
{
|
||||
Icon = FontAwesome.fa_trash;
|
||||
FirstLineText = @"Delete";
|
||||
SecondLineText = @"Beatmap";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user