mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00: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;
|
|
}
|
|
}
|
|
} |