From dc850d3f732c5a5ed7c39bd63a47090bda66355a Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 4 Oct 2011 22:49:58 +1300 Subject: [PATCH] tidy in Armor.cs --- OpenRA.Game/Traits/Armor.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/OpenRA.Game/Traits/Armor.cs b/OpenRA.Game/Traits/Armor.cs index cf518b6e09..4f96600daf 100644 --- a/OpenRA.Game/Traits/Armor.cs +++ b/OpenRA.Game/Traits/Armor.cs @@ -8,19 +8,13 @@ */ #endregion -using System; -using OpenRA.Traits; -using OpenRA.GameRules; -using System.Collections.Generic; -using OpenRA.FileFormats; - namespace OpenRA.Traits { - public class ArmorInfo : ITraitInfo + public class ArmorInfo : TraitInfo { public readonly string Type = null; - public object Create (ActorInitializer init) { return new Armor(); } } + public class Armor {} }