Removes implicit types
This commit is contained in:
parent
33f5e77a24
commit
04b4cfe75b
261 changed files with 1329 additions and 1329 deletions
|
|
@ -5,7 +5,7 @@ namespace Server
|
|||
{
|
||||
public class DoorGenerator
|
||||
{
|
||||
private static Rectangle2D[] m_BritRegions = new Rectangle2D[]
|
||||
private static Rectangle2D[] m_BritRegions = new[]
|
||||
{
|
||||
new Rectangle2D( new Point2D( 250, 750 ), new Point2D( 775, 1330 ) ),
|
||||
new Rectangle2D( new Point2D( 525, 2095 ), new Point2D( 925, 2430 ) ),
|
||||
|
|
@ -25,17 +25,17 @@ namespace Server
|
|||
new Rectangle2D( new Point2D( 5120, 2300 ), new Point2D( 6143, 4095 ) )
|
||||
};
|
||||
|
||||
private static Rectangle2D[] m_IlshRegions = new Rectangle2D[]
|
||||
private static Rectangle2D[] m_IlshRegions = new[]
|
||||
{
|
||||
new Rectangle2D( new Point2D( 0, 0 ), new Point2D( 288*8, 200*8 ) )
|
||||
};
|
||||
|
||||
private static Rectangle2D[] m_MalasRegions = new Rectangle2D[]
|
||||
private static Rectangle2D[] m_MalasRegions = new[]
|
||||
{
|
||||
new Rectangle2D( new Point2D( 0, 0 ), new Point2D( 320*8, 256*8 ) )
|
||||
};
|
||||
|
||||
private static int[] m_SouthFrames = new int[]
|
||||
private static int[] m_SouthFrames = new[]
|
||||
{
|
||||
0x0006,
|
||||
0x0008,
|
||||
|
|
@ -109,7 +109,7 @@ namespace Server
|
|||
0x020A
|
||||
};
|
||||
|
||||
private static int[] m_NorthFrames = new int[]
|
||||
private static int[] m_NorthFrames = new[]
|
||||
{
|
||||
0x0006,
|
||||
0x0008,
|
||||
|
|
@ -182,7 +182,7 @@ namespace Server
|
|||
0x020A
|
||||
};
|
||||
|
||||
private static int[] m_EastFrames = new int[]
|
||||
private static int[] m_EastFrames = new[]
|
||||
{
|
||||
0x0007,
|
||||
0x000A,
|
||||
|
|
@ -256,7 +256,7 @@ namespace Server
|
|||
0x0209
|
||||
};
|
||||
|
||||
private static int[] m_WestFrames = new int[]
|
||||
private static int[] m_WestFrames = new[]
|
||||
{
|
||||
0x0007,
|
||||
0x000C,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue