nitpick previous commits - public properties not readonly fields
This commit is contained in:
parent
69aa909fc5
commit
747501af52
|
@ -11,15 +11,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
public abstract class PadSchemaControl
|
public abstract class PadSchemaControl
|
||||||
{
|
{
|
||||||
public readonly Point Location;
|
|
||||||
|
|
||||||
public readonly string Name;
|
|
||||||
|
|
||||||
protected PadSchemaControl(Point location, string name)
|
protected PadSchemaControl(Point location, string name)
|
||||||
{
|
{
|
||||||
Location = location;
|
Location = location;
|
||||||
Name = name;
|
Name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Point Location { get; }
|
||||||
|
public string Name { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>A single on/off button</summary>
|
/// <summary>A single on/off button</summary>
|
||||||
|
|
Loading…
Reference in New Issue