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

◆ Equals() [1/3]

override bool Microsoft.Xna.Framework.Plane.Equals ( object obj)
inline

Definition at line 69 of file Plane.cs.

70 {
71 bool result = false;
72 if (obj is Plane)
73 {
74 result = Equals((Plane)obj);
75 }
76 return result;
77 }
bool Equals(Plane other)
Definition Plane.cs:60
Plane(float a, float b, float c, float d)
Definition Plane.cs:19

References Microsoft.Xna.Framework.Plane.Equals(), and System.obj.