From 95795c51980ac4c6cfda84c204568c073e6c815c Mon Sep 17 00:00:00 2001 From: reaperrr Date: Thu, 26 May 2016 11:54:48 +0200 Subject: [PATCH] Move EditorTilesetFilter to Mods.Common --- OpenRA.Game/OpenRA.Game.csproj | 1 - OpenRA.Mods.Common/OpenRA.Mods.Common.csproj | 1 + .../Traits/EditorTilesetFilter.cs | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) rename {OpenRA.Game => OpenRA.Mods.Common}/Traits/EditorTilesetFilter.cs (92%) diff --git a/OpenRA.Game/OpenRA.Game.csproj b/OpenRA.Game/OpenRA.Game.csproj index 3731498e8a..ae3b220ae1 100644 --- a/OpenRA.Game/OpenRA.Game.csproj +++ b/OpenRA.Game/OpenRA.Game.csproj @@ -171,7 +171,6 @@ - diff --git a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj index 4e439a1e40..458e1700b5 100644 --- a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj +++ b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj @@ -325,6 +325,7 @@ + diff --git a/OpenRA.Game/Traits/EditorTilesetFilter.cs b/OpenRA.Mods.Common/Traits/EditorTilesetFilter.cs similarity index 92% rename from OpenRA.Game/Traits/EditorTilesetFilter.cs rename to OpenRA.Mods.Common/Traits/EditorTilesetFilter.cs index fc78d4fdcf..db6f9da191 100644 --- a/OpenRA.Game/Traits/EditorTilesetFilter.cs +++ b/OpenRA.Mods.Common/Traits/EditorTilesetFilter.cs @@ -10,8 +10,9 @@ #endregion using System.Collections.Generic; +using OpenRA.Traits; -namespace OpenRA.Traits +namespace OpenRA.Mods.Common.Traits { public class EditorTilesetFilterInfo : TraitInfo {