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

@ -21,7 +21,7 @@ using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Profile.Sections.Historical
{
public class DrawableMostPlayedBeatmap : CompositeDrawable
public partial class DrawableMostPlayedBeatmap : CompositeDrawable
{
private const int cover_width = 100;
private const int corner_radius = 6;
@ -110,7 +110,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
});
}
private class MostPlayedBeatmapContainer : ProfileItemContainer
private partial class MostPlayedBeatmapContainer : ProfileItemContainer
{
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
@ -120,7 +120,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
}
}
private class MostPlayedBeatmapMetadataContainer : BeatmapMetadataContainer
private partial class MostPlayedBeatmapMetadataContainer : BeatmapMetadataContainer
{
public MostPlayedBeatmapMetadataContainer(IBeatmapInfo beatmapInfo)
: base(beatmapInfo)
@ -159,7 +159,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
}
}
private class PlayCountText : CompositeDrawable, IHasTooltip
private partial class PlayCountText : CompositeDrawable, IHasTooltip
{
public LocalisableString TooltipText => UsersStrings.ShowExtraHistoricalMostPlayedCount;