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

◆ operator!=()

static bool Microsoft.Xna.Framework.Rectangle.operator!= ( Rectangle a,
Rectangle b )
inlinestatic

Definition at line 270 of file Rectangle.cs.

271 {
272 if (a.X == b.X && a.Y == b.Y && a.Width == b.Width)
273 {
274 return a.Height != b.Height;
275 }
276 return true;
277 }

References Microsoft.Xna.Framework.Rectangle.Height, Microsoft.Xna.Framework.Rectangle.Width, Microsoft.Xna.Framework.Rectangle.X, and Microsoft.Xna.Framework.Rectangle.Y.