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

◆ operator==()

static bool System.Drawing.Size.operator== ( Size sz1,
Size sz2 )
inlinestatic

Definition at line 112 of file Size.cs.

113 {
114 if (sz1.Width == sz2.Width)
115 {
116 return sz1.Height == sz2.Height;
117 }
118 return false;
119 }

References System.Drawing.Size.Height, and System.Drawing.Size.Width.