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