Move tab channel class into tab item class

This commit is contained in:
Paul Teng
2019-05-12 06:31:11 -04:00
parent 8957ad5a7e
commit 7adaa09263
5 changed files with 12 additions and 19 deletions

View File

@ -31,5 +31,13 @@ namespace osu.Game.Overlays.Chat.Tabs
BackgroundInactive = colour.Gray2;
BackgroundActive = colour.Gray3;
}
public class ChannelSelectorTabChannel : Channel
{
public ChannelSelectorTabChannel()
{
Name = "+";
}
}
}
}