Fix variable ordering.
This commit is contained in:
@@ -19,6 +19,8 @@ namespace OpenRA.Mods.Common.Graphics
|
||||
public int Length { get { return trail.Length; } }
|
||||
|
||||
readonly World world;
|
||||
readonly Color color;
|
||||
readonly int zOffset;
|
||||
|
||||
// Store trail positions in a circular buffer
|
||||
readonly WPos[] trail;
|
||||
@@ -26,9 +28,6 @@ namespace OpenRA.Mods.Common.Graphics
|
||||
int length;
|
||||
int skip;
|
||||
|
||||
readonly Color color;
|
||||
readonly int zOffset;
|
||||
|
||||
public ContrailRenderable(World world, Color color, int length, int skip, int zOffset)
|
||||
: this(world, new WPos[length], 0, 0, skip, color, zOffset) { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user