CSE.Content.Vector2.Vector2 C# (CSharp) Method

Vector2() public method

public Vector2 ( float x, float y )
x float
y float
		public Vector2(float x, float y) {
			X = x;
			Y = y;
		}
	}
Vector2