1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 17:43:12 +08:00

Make OnlinePlayPill class abstract

This commit is contained in:
Dean Herbert 2023-05-17 16:13:03 +09:00
parent cc6e4df93e
commit e97d027230

View File

@ -10,12 +10,12 @@ using osu.Game.Graphics.Containers;
namespace osu.Game.Screens.OnlinePlay.Lounge.Components namespace osu.Game.Screens.OnlinePlay.Lounge.Components
{ {
public partial class OnlinePlayPill : OnlinePlayComposite public abstract partial class OnlinePlayPill : OnlinePlayComposite
{ {
protected PillContainer Pill; protected PillContainer Pill;
protected OsuTextFlowContainer TextFlow; protected OsuTextFlowContainer TextFlow;
public OnlinePlayPill() protected OnlinePlayPill()
{ {
AutoSizeAxes = Axes.Both; AutoSizeAxes = Axes.Both;
} }