Britbot
override int Britbot.HeadingVector.GetHashCode ( ) [inline]

Gets a unique-ish hascide for the instance.

Returns:

Definition at line 91 of file HeadingVector.cs.

        {
            unchecked
            {
                return (this.X.GetHashCode() * 397) ^ this.Y.GetHashCode();
            }
        }