Merge pull request #12004 from reaperrr/projectile-cleanup2

More projectile property streamlining and cleanups
This commit is contained in:
Paul Chote
2016-10-29 14:21:29 +01:00
committed by GitHub
20 changed files with 134 additions and 47 deletions

View File

@@ -19,6 +19,7 @@ namespace OpenRA
public struct WAngle : IEquatable<WAngle>
{
public readonly int Angle;
public int AngleSquared { get { return (int)Angle * Angle; } }
public WAngle(int a)
{