mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 08:57:25 +09:00
19 lines
441 B
C#
19 lines
441 B
C#
using osu.Framework.Allocation;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
{
|
|
internal class ToolbarDirectButton : ToolbarOverlayToggleButton
|
|
{
|
|
public ToolbarDirectButton()
|
|
{
|
|
SetIcon(FontAwesome.fa_download);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(DirectOverlay direct)
|
|
{
|
|
StateContainer = direct;
|
|
}
|
|
}
|
|
} |