AgaHackTools.Example.Shared.Math.Vector2.Vector2 C# (CSharp) Method

Vector2() public method

Initializes a new Vector2 by copying the values of the given Vector2
public Vector2 ( Vector2 vec ) : System
vec Vector2
return System
        public Vector2(Vector2 vec)
            : this(vec.X, vec.Y)
        {
        }

Same methods

Vector2::Vector2 ( float values ) : System
Vector2::Vector2 ( float x, float y ) : System