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

@ -9,7 +9,7 @@ using osu.Game.Localisation;
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class GlobalKeyBindingsSection : SettingsSection
public partial class GlobalKeyBindingsSection : SettingsSection
{
public override Drawable CreateIcon() => new SpriteIcon
{
@ -28,7 +28,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
Add(new EditorKeyBindingsSubsection(manager));
}
private class DefaultBindingsSubsection : KeyBindingsSubsection
private partial class DefaultBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => string.Empty;
@ -39,7 +39,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
private class OverlayBindingsSubsection : KeyBindingsSubsection
private partial class OverlayBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => InputSettingsStrings.OverlaysSection;
@ -50,7 +50,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
private class SongSelectKeyBindingSubsection : KeyBindingsSubsection
private partial class SongSelectKeyBindingSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => InputSettingsStrings.SongSelectSection;
@ -61,7 +61,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
private class InGameKeyBindingsSubsection : KeyBindingsSubsection
private partial class InGameKeyBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => InputSettingsStrings.InGameSection;
@ -72,7 +72,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
private class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
private partial class AudioControlKeyBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => InputSettingsStrings.AudioSection;
@ -83,7 +83,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
private class EditorKeyBindingsSubsection : KeyBindingsSubsection
private partial class EditorKeyBindingsSubsection : KeyBindingsSubsection
{
protected override LocalisableString Header => InputSettingsStrings.EditorSection;