Make CanTarget modifiers a ref parameter.

This commit is contained in:
Paul Chote
2015-11-16 20:38:53 +00:00
parent d2d4767e94
commit 124c0ea041
11 changed files with 13 additions and 13 deletions

View File

@@ -97,7 +97,7 @@ namespace OpenRA.Traits
{
string OrderID { get; }
int OrderPriority { get; }
bool CanTarget(Actor self, Target target, List<Actor> othersAtTarget, TargetModifiers modifiers, ref string cursor);
bool CanTarget(Actor self, Target target, List<Actor> othersAtTarget, ref TargetModifiers modifiers, ref string cursor);
bool IsQueued { get; }
bool OverrideSelection { get; }
}