Fix variable ordering.

This commit is contained in:
Paul Chote
2014-12-26 11:05:22 +13:00
parent 22ab35f681
commit 362b4aeaef
6 changed files with 18 additions and 22 deletions

View File

@@ -25,10 +25,9 @@ namespace OpenRA.Mods.Common.Traits
class WaterPaletteRotation : ITick, IPaletteModifier
{
float t = 0;
readonly WaterPaletteRotationInfo info;
readonly World world;
float t = 0;
public WaterPaletteRotation(World world, WaterPaletteRotationInfo info)
{