Splits AttackMove into trait and activity.

Moves them to subfolders/namespaces accordingly.
This commit is contained in:
reaperrr
2014-12-10 22:56:46 +01:00
parent 88c119ebba
commit 584a6b2e75
10 changed files with 98 additions and 74 deletions

View File

@@ -35,7 +35,7 @@ namespace OpenRA.Mods.RA.Activities
return this;
return Util.SequenceActivities(
new AttackMove.AttackMoveActivity(self, new Move.Move(self, target.Location, WRange.FromCells(2))),
new AttackMoveActivity(self, new Move.Move(self, target.Location, WRange.FromCells(2))),
new Wait(25),
this);
}