Removed Atan2 from script glue

This commit is contained in:
Simon Lübeß
2024-01-20 21:24:43 +01:00
parent 02be6d8eb7
commit 7f40ae038a
@@ -782,8 +782,6 @@ static class ScriptGlue
RegisterCall<function bool(half)>("Math.Half::IsInfinity_Impl", (value) => value.IsInfinity);
RegisterCall<function bool(half)>("Math.Half::IsNan_Impl", (value) => value.IsNaN);
RegisterCall<function bool(half)>("Math.Half::IsSubnormal_Impl", (value) => value.IsSubnormal);
RegisterCall<function float(float, float)>("Math.Math::Atan2", (y, x) => Math.Atan2(y, x));
}
#endregion