Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Size

Size System.Drawing.Rectangle.Size
getset

Definition at line 37 of file Rectangle.cs.

38 {
39 readonly get
40 {
41 return new Size(Width, Height);
42 }
43 set
44 {
45 Width = value.Width;
46 Height = value.Height;
47 }
48 }