From 83477ec19e934b43fac2112335102d79bd47c8b1 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 4 Jan 2016 20:08:32 +0000 Subject: [PATCH] Move VqaReader to Mods.Common. --- OpenRA.Game/OpenRA.Game.csproj | 1 - {OpenRA.Game => OpenRA.Mods.Common}/FileFormats/VqaReader.cs | 3 ++- OpenRA.Mods.Common/OpenRA.Mods.Common.csproj | 1 + OpenRA.Mods.Common/Scripting/Global/MediaGlobal.cs | 2 +- OpenRA.Mods.Common/Scripting/Media.cs | 2 +- OpenRA.Mods.Common/Widgets/VqaPlayerWidget.cs | 2 +- 6 files changed, 6 insertions(+), 5 deletions(-) rename {OpenRA.Game => OpenRA.Mods.Common}/FileFormats/VqaReader.cs (99%) diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj index 0dc0a0b015..aea360ca68 100644 --- a/OpenRA.Game/OpenRA.Game.csproj +++ b/OpenRA.Game/OpenRA.Game.csproj @@ -287,7 +287,6 @@ - diff --git a/OpenRA.Game/FileFormats/VqaReader.cs b/OpenRA.Mods.Common/FileFormats/VqaReader.cs similarity index 99% rename from OpenRA.Game/FileFormats/VqaReader.cs rename to OpenRA.Mods.Common/FileFormats/VqaReader.cs index c1928db738..1916067608 100644 --- a/OpenRA.Game/FileFormats/VqaReader.cs +++ b/OpenRA.Mods.Common/FileFormats/VqaReader.cs @@ -10,8 +10,9 @@ using System; using System.IO; +using OpenRA.FileFormats; -namespace OpenRA.FileFormats +namespace OpenRA.Mods.Common.FileFormats { public class VqaReader { diff --git a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj index 810e1ea4ae..d0cca4071d 100644 --- a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj +++ b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj @@ -719,6 +719,7 @@ + diff --git a/OpenRA.Mods.Common/Scripting/Global/MediaGlobal.cs b/OpenRA.Mods.Common/Scripting/Global/MediaGlobal.cs index 7c4ef02d8b..a11e7e5f5f 100644 --- a/OpenRA.Mods.Common/Scripting/Global/MediaGlobal.cs +++ b/OpenRA.Mods.Common/Scripting/Global/MediaGlobal.cs @@ -13,10 +13,10 @@ using System.Drawing; using System.IO; using Eluant; using OpenRA.Effects; -using OpenRA.FileFormats; using OpenRA.GameRules; using OpenRA.Graphics; using OpenRA.Mods.Common.Effects; +using OpenRA.Mods.Common.FileFormats; using OpenRA.Mods.Common.Traits; using OpenRA.Scripting; diff --git a/OpenRA.Mods.Common/Scripting/Media.cs b/OpenRA.Mods.Common/Scripting/Media.cs index 1d9f7ef69d..fd0ef42946 100644 --- a/OpenRA.Mods.Common/Scripting/Media.cs +++ b/OpenRA.Mods.Common/Scripting/Media.cs @@ -10,7 +10,7 @@ using System; using System.IO; -using OpenRA.FileFormats; +using OpenRA.Mods.Common.FileFormats; using OpenRA.Mods.Common.Widgets; using OpenRA.Widgets; diff --git a/OpenRA.Mods.Common/Widgets/VqaPlayerWidget.cs b/OpenRA.Mods.Common/Widgets/VqaPlayerWidget.cs index 45be7bae6b..373a746f41 100644 --- a/OpenRA.Mods.Common/Widgets/VqaPlayerWidget.cs +++ b/OpenRA.Mods.Common/Widgets/VqaPlayerWidget.cs @@ -10,8 +10,8 @@ using System; using System.Drawing; -using OpenRA.FileFormats; using OpenRA.Graphics; +using OpenRA.Mods.Common.FileFormats; using OpenRA.Widgets; namespace OpenRA.Mods.Common.Widgets