Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue