2017-06-07 19:15:58 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// 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 ToolbarSocialButton : ToolbarOverlayToggleButton
|
2017-06-07 19:15:58 +08:00
|
|
|
{
|
|
|
|
public ToolbarSocialButton()
|
|
|
|
{
|
|
|
|
Icon = FontAwesome.fa_users;
|
|
|
|
}
|
|
|
|
|
2017-12-26 00:12:46 +08:00
|
|
|
[BackgroundDependencyLoader(true)]
|
2017-06-07 19:15:58 +08:00
|
|
|
private void load(SocialOverlay chat)
|
|
|
|
{
|
|
|
|
StateContainer = chat;
|
|
|
|
}
|
|
|
|
}
|
2017-11-21 10:49:42 +08:00
|
|
|
}
|