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

@ -31,7 +31,7 @@ using osuTK.Input;
namespace osu.Game.Overlays.Settings.Sections.Input
{
public class KeyBindingRow : Container, IFilterable
public partial class KeyBindingRow : Container, IFilterable
{
/// <summary>
/// Invoked when the binding of this row is updated with a change being written.
@ -446,7 +446,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
isDefault.Value = bindings.Select(b => b.KeyCombination).SequenceEqual(Defaults);
}
private class CancelButton : TriangleButton
private partial class CancelButton : TriangleButton
{
public CancelButton()
{
@ -455,7 +455,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
public class ClearButton : DangerousTriangleButton
public partial class ClearButton : DangerousTriangleButton
{
public ClearButton()
{
@ -464,7 +464,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}
}
public class KeyButton : Container
public partial class KeyButton : Container
{
public readonly RealmKeyBinding KeyBinding;