1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 06:52:55 +08:00
osu-lazer/osu.Game/Overlays/Chat/Tabs/ChannelSelectorTabChannel.cs
2019-05-12 06:02:21 -04:00

16 lines
373 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Online.Chat;
namespace osu.Game.Overlays.Chat.Tabs
{
public class ChannelSelectorTabChannel : Channel
{
public ChannelSelectorTabChannel()
{
Name = "+";
}
}
}