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

◆ Equals() [1/3]

override bool System.Boolean.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 68 of file Boolean.cs.

69 {
70 if (!(obj is bool))
71 {
72 return false;
73 }
74 return this == (bool)obj;
75 }

References System.obj.