1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 23:17:25 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarChatButton.cs

23 lines
591 B
C#
Raw Normal View History

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