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

◆ operator!=()

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

Definition at line 550 of file BoundingBox.cs.

551 {
552 if (!(a.Min != b.Min))
553 {
554 return a.Max != b.Max;
555 }
556 return true;
557 }