mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Partial everything
This commit is contained in:
committed by
Dean Herbert
parent
a1c559ae05
commit
7bc8908ca9
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user