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

◆ Equals() [1/2]

override bool System.Collections.Generic.ObjectEqualityComparer< T >.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 86 of file ObjectEqualityComparer.cs.

87 {
88 if (obj != null)
89 {
90 return GetType() == obj.GetType();
91 }
92 return false;
93 }

References System.obj.