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

◆ operator==()

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

Definition at line 119 of file CurveKey.cs.

120 {
121 bool flag = false;
122 bool flag2 = (object)null == a;
123 bool flag3 = (object)null == b;
124 if (flag2 || flag3)
125 {
126 return flag2 == flag3;
127 }
128 return a.Equals(b);
129 }

References Microsoft.Xna.Framework.CurveKey.Equals().