1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 00:57:25 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarChatButton.cs

22 lines
583 B
C#
Raw Normal View History

2017-04-19 18:54:03 +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
{
internal class ToolbarChatButton : ToolbarOverlayToggleButton
{
public ToolbarChatButton()
{
Icon = FontAwesome.fa_comments;
}
[BackgroundDependencyLoader]
private void load(ChatOverlay chat)
{
StateContainer = chat;
}
}
}