Partial everything

This commit is contained in:
Dan Balasescu
2022-11-24 14:32:20 +09:00
committed by Dean Herbert
parent a1c559ae05
commit 7bc8908ca9
2331 changed files with 3218 additions and 3218 deletions

View File

@ -42,7 +42,7 @@ using osu.Game.Skinning;
namespace osu.Game.Screens.Select
{
public abstract class SongSelect : ScreenWithBeatmapBackground, IKeyBindingHandler<GlobalAction>
public abstract partial class SongSelect : ScreenWithBeatmapBackground, IKeyBindingHandler<GlobalAction>
{
public static readonly float WEDGE_HEIGHT = 245;
@ -925,7 +925,7 @@ namespace osu.Game.Screens.Select
return base.OnKeyDown(e);
}
private class VerticalMaskingContainer : Container
private partial class VerticalMaskingContainer : Container
{
private const float panel_overflow = 1.2f;
@ -948,7 +948,7 @@ namespace osu.Game.Screens.Select
}
}
private class ResetScrollContainer : Container
private partial class ResetScrollContainer : Container
{
private readonly Action onHoverAction;
@ -964,7 +964,7 @@ namespace osu.Game.Screens.Select
}
}
internal class SoloModSelectOverlay : UserModSelectOverlay
internal partial class SoloModSelectOverlay : UserModSelectOverlay
{
protected override bool ShowPresets => true;
}