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