Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -20,10 +20,10 @@ namespace Server.Gumps
private int m_Hue;
private CAGCategory m_Parent;
public Type Type{ get{ return m_Type; } }
public int ItemID{ get{ return m_ItemID; } }
public int Hue{ get{ return m_Hue; } }
public CAGCategory Parent{ get{ return m_Parent; } }
public Type Type => m_Type;
public int ItemID => m_ItemID;
public int Hue => m_Hue;
public CAGCategory Parent => m_Parent;
public override string Caption => ( m_Type == null ? "bad type" : m_Type.Name );
@ -62,9 +62,9 @@ namespace Server.Gumps
private CAGNode[] m_Nodes;
private CAGCategory m_Parent;
public string Title{ get{ return m_Title; } }
public CAGNode[] Nodes{ get{ return m_Nodes; } }
public CAGCategory Parent{ get{ return m_Parent; } }
public string Title => m_Title;
public CAGNode[] Nodes => m_Nodes;
public CAGCategory Parent => m_Parent;
public override string Caption => m_Title;