Make Attack*Info plumbing consistent.

This commit is contained in:
Paul Chote
2014-03-08 12:24:02 +13:00
parent 116e4acda3
commit 113bfe5311
7 changed files with 13 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ namespace OpenRA.Mods.RA
Lazy<IEnumerable<Armament>> armaments;
protected IEnumerable<Armament> Armaments { get { return armaments.Value; } }
public AttackBase(Actor self)
public AttackBase(Actor self, AttackBaseInfo info)
{
this.self = self;
armaments = Lazy.New(() => self.TraitsImplementing<Armament>());