From e1761d8969bb65648d3514e24730b627dfec2ded Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Fri, 3 Dec 2010 20:43:27 +1300 Subject: [PATCH] cleanup some usings --- OpenRA.Mods.RA/Scripting/Media.cs | 12 +++--------- OpenRA.Mods.RA/Scripting/RASpecialPowers.cs | 12 ++++++------ 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/OpenRA.Mods.RA/Scripting/Media.cs b/OpenRA.Mods.RA/Scripting/Media.cs index d6c37f9981..f6be931588 100644 --- a/OpenRA.Mods.RA/Scripting/Media.cs +++ b/OpenRA.Mods.RA/Scripting/Media.cs @@ -6,16 +6,10 @@ * as published by the Free Software Foundation. For more information, * see LICENSE. */ -#endregion - -using System.Collections.Generic; -using System.Linq; -using OpenRA.Traits; +#endregion + +using System; using OpenRA.Widgets; -using OpenRA.Traits.Activities; -using OpenRA.FileFormats; -using OpenRA.Mods.RA.Activities; -using System; namespace OpenRA.Scripting { diff --git a/OpenRA.Mods.RA/Scripting/RASpecialPowers.cs b/OpenRA.Mods.RA/Scripting/RASpecialPowers.cs index dddb5539f7..4c46d5f92e 100644 --- a/OpenRA.Mods.RA/Scripting/RASpecialPowers.cs +++ b/OpenRA.Mods.RA/Scripting/RASpecialPowers.cs @@ -6,13 +6,13 @@ * as published by the Free Software Foundation. For more information, * see LICENSE. */ -#endregion - -using OpenRA.FileFormats; -using OpenRA.Mods.RA; +#endregion + +using System.Collections.Generic; +using System.Linq; +using OpenRA.FileFormats; +using OpenRA.Mods.RA; using OpenRA.Mods.RA.Render; -using System.Collections.Generic; -using System.Linq; namespace OpenRA.Scripting {