Merge pull request #3375 from i80and/pathingdomains

Pathingdomains
This commit is contained in:
Paul Chote
2013-07-12 23:01:38 -07:00
10 changed files with 299 additions and 17 deletions

View File

@@ -73,5 +73,17 @@ namespace OpenRA
}
public override string ToString() { return "{0},{1}".F(X, Y); }
public static readonly CVec[] directions =
{
new CVec(-1, -1),
new CVec(-1, 0),
new CVec(-1, 1),
new CVec(0, -1),
new CVec(0, 1),
new CVec(1, -1),
new CVec(1, 0),
new CVec(1, 1),
};
}
}