2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-02 17:43:01 +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 ToolbarMusicButton : ToolbarOverlayToggleButton
|
2016-12-02 17:43:01 +08:00
|
|
|
|
{
|
|
|
|
|
public ToolbarMusicButton()
|
|
|
|
|
{
|
|
|
|
|
Icon = FontAwesome.fa_music;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-26 00:12:46 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2016-12-02 17:43:01 +08:00
|
|
|
|
private void load(MusicController music)
|
|
|
|
|
{
|
|
|
|
|
StateContainer = music;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-21 10:49:42 +08:00
|
|
|
|
}
|