Changes properties to use automatic property initializers

This commit is contained in:
Kamron Batman 2018-09-14 15:23:29 -07:00
parent f0a48ad431
commit 06fa31a7bf
623 changed files with 13072 additions and 19304 deletions

View file

@ -4,14 +4,9 @@ namespace Server.Gumps
{
public class ChildNode
{
private ParentNode m_Parent;
private string m_Name;
private Point3D m_Location;
public ChildNode( XmlTextReader xml, ParentNode parent )
{
m_Parent = parent;
Parent = parent;
Parse( xml );
}
@ -19,9 +14,9 @@ namespace Server.Gumps
private void Parse( XmlTextReader xml )
{
if ( xml.MoveToAttribute( "name" ) )
m_Name = xml.Value;
Name = xml.Value;
else
m_Name = "empty";
Name = "empty";
int x = 0, y = 0, z = 0;
@ -34,13 +29,13 @@ namespace Server.Gumps
if ( xml.MoveToAttribute( "z" ) )
z = Utility.ToInt32( xml.Value );
m_Location = new Point3D( x, y, z );
Location = new Point3D( x, y, z );
}
public ParentNode Parent => m_Parent;
public ParentNode Parent { get; }
public string Name => m_Name;
public string Name { get; private set; }
public Point3D Location => m_Location;
public Point3D Location { get; private set; }
}
}