OurSonic.Utility.Point.Offset C# (CSharp) Method

Offset() public method

public Offset ( Point windowLocation ) : Point
windowLocation Point
return Point
        public Point Offset(Point windowLocation)
        {
            return new Point(X + windowLocation.X, Y + windowLocation.Y);
        }