diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs index c63b69fdc4..79e7d5ce33 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/PadSchemaControl.cs @@ -11,15 +11,14 @@ namespace BizHawk.Client.EmuHawk { public abstract class PadSchemaControl { - public readonly Point Location; - - public readonly string Name; - protected PadSchemaControl(Point location, string name) { Location = location; Name = name; } + + public Point Location { get; } + public string Name { get; } } /// A single on/off button