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

@ -25,7 +25,7 @@ using osuTK.Graphics;
namespace osu.Game.Overlays.Settings.Sections.Graphics
{
public class LayoutSettings : SettingsSubsection
public partial class LayoutSettings : SettingsSubsection
{
protected override LocalisableString Header => GraphicsSettingsStrings.LayoutHeader;
@ -324,7 +324,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
base.Dispose(isDisposing);
}
private class ScalingPreview : ScalingContainer
private partial class ScalingPreview : ScalingContainer
{
public ScalingPreview()
{
@ -337,16 +337,16 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
}
}
private class UIScaleSlider : OsuSliderBar<float>
private partial class UIScaleSlider : OsuSliderBar<float>
{
public override LocalisableString TooltipText => base.TooltipText + "x";
}
private class DisplaySettingsDropdown : SettingsDropdown<Display>
private partial class DisplaySettingsDropdown : SettingsDropdown<Display>
{
protected override OsuDropdown<Display> CreateDropdown() => new DisplaySettingsDropdownControl();
private class DisplaySettingsDropdownControl : DropdownControl
private partial class DisplaySettingsDropdownControl : DropdownControl
{
protected override LocalisableString GenerateItemText(Display item)
{
@ -355,11 +355,11 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
}
}
private class ResolutionSettingsDropdown : SettingsDropdown<Size>
private partial class ResolutionSettingsDropdown : SettingsDropdown<Size>
{
protected override OsuDropdown<Size> CreateDropdown() => new ResolutionDropdownControl();
private class ResolutionDropdownControl : DropdownControl
private partial class ResolutionDropdownControl : DropdownControl
{
protected override LocalisableString GenerateItemText(Size item)
{

View File

@ -13,7 +13,7 @@ using osu.Game.Localisation;
namespace osu.Game.Overlays.Settings.Sections.Graphics
{
public class RendererSettings : SettingsSubsection
public partial class RendererSettings : SettingsSubsection
{
protected override LocalisableString Header => GraphicsSettingsStrings.RendererHeader;

View File

@ -11,7 +11,7 @@ using osu.Game.Localisation;
namespace osu.Game.Overlays.Settings.Sections.Graphics
{
public class ScreenshotSettings : SettingsSubsection
public partial class ScreenshotSettings : SettingsSubsection
{
protected override LocalisableString Header => GraphicsSettingsStrings.Screenshots;

View File

@ -13,7 +13,7 @@ using osu.Game.Localisation;
namespace osu.Game.Overlays.Settings.Sections.Graphics
{
public class VideoSettings : SettingsSubsection
public partial class VideoSettings : SettingsSubsection
{
protected override LocalisableString Header => GraphicsSettingsStrings.VideoHeader;