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

◆ Equals() [1/3]

override readonly bool System.Numerics.Vector4.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 395 of file Vector4.cs.

396 {
397 if (obj is Vector4 other)
398 {
399 return Equals(other);
400 }
401 return false;
402 }
Vector4(float value)
Definition Vector4.cs:48
readonly bool Equals(Vector4 other)
Definition Vector4.cs:389

References System.Numerics.Vector4.Equals(), System.obj, and System.other.