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

◆ operator!=()

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

Definition at line 540 of file BoundingSphere.cs.

541 {
542 if (!(a.Center != b.Center))
543 {
544 return a.Radius != b.Radius;
545 }
546 return true;
547 }