Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -66,10 +66,10 @@ namespace Server.Items
|
|||
private int m_Width, m_Height;
|
||||
private Rectangle2D m_Bounds;
|
||||
|
||||
public int Name{ get{ return m_Name; } }
|
||||
public int Width{ get{ return m_Width; } }
|
||||
public int Height{ get{ return m_Height; } }
|
||||
public Rectangle2D Bounds{ get{ return m_Bounds; } }
|
||||
public int Name => m_Name;
|
||||
public int Width => m_Width;
|
||||
public int Height => m_Height;
|
||||
public Rectangle2D Bounds => m_Bounds;
|
||||
|
||||
public PresetMapEntry( int name, int width, int height, int xLeft, int yTop, int xRight, int yBottom )
|
||||
{
|
||||
|
|
@ -111,7 +111,7 @@ namespace Server.Items
|
|||
new PresetMapEntry( 1041202, 200, 200, 0000, 0512, 1792, 2048 ) // map of Yew to Britain
|
||||
};
|
||||
|
||||
public static PresetMapEntry[] Table{ get{ return m_Table; } }
|
||||
public static PresetMapEntry[] Table => m_Table;
|
||||
}
|
||||
|
||||
public enum PresetMapType
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue