2017-08-24 11:25:18 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-08-24 11:18:47 +00:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
|
|
{
|
2017-11-21 02:49:42 +00:00
|
|
|
public class ToolbarDirectButton : ToolbarOverlayToggleButton
|
2017-08-24 11:18:47 +00:00
|
|
|
{
|
|
|
|
public ToolbarDirectButton()
|
|
|
|
{
|
2017-08-25 04:03:34 +00:00
|
|
|
SetIcon(FontAwesome.fa_osu_chevron_down_o);
|
2017-08-24 11:18:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(DirectOverlay direct)
|
|
|
|
{
|
|
|
|
StateContainer = direct;
|
|
|
|
}
|
|
|
|
}
|
2017-11-21 02:49:42 +00:00
|
|
|
}
|