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

@ -32,15 +32,21 @@ namespace Server
private int m_Strings;
private string m_HeaderArgs;
public IEntity Entity{ get{ return m_Entity; } }
public int Hash{ get{ return 0x40000000 + m_Hash; } }
public IEntity Entity => m_Entity;
public int Hash => 0x40000000 + m_Hash;
public int Header{ get{ return m_Header; } set{ m_Header = value; } }
public string HeaderArgs{ get{ return m_HeaderArgs; } set{ m_HeaderArgs = value; } }
public int Header{ get => m_Header;
set => m_Header = value;
}
public string HeaderArgs{ get => m_HeaderArgs;
set => m_HeaderArgs = value;
}
private static bool m_Enabled = false;
public static bool Enabled{ get{ return m_Enabled; } set{ m_Enabled = value; } }
public static bool Enabled{ get => m_Enabled;
set => m_Enabled = value;
}
public ObjectPropertyList( IEntity e ) : base( 0xD6 )
{