/// <summary>Construct an instance.</summary>
 /// <param name="other">The other instance to copy.</param>
 public PatchRectangleConfig(PatchRectangleConfig other)
 {
     this.X      = other.X;
     this.Y      = other.Y;
     this.Width  = other.Width;
     this.Height = other.Height;
 }
Ejemplo n.º 2
0
 /// <summary>Construct an instance.</summary>
 /// <param name="other">The other instance to copy.</param>
 public PatchPositionConfig(PatchRectangleConfig other)
 {
     this.X = other.X;
     this.Y = other.Y;
 }