Remove duplicated declaration of RoundToInt() from Mathf

(cherry picked from commit 9e2e6bb1e2)
This commit is contained in:
Xavier Cho 2018-04-14 09:15:20 +09:00 committed by Hein-Pieter van Braam
parent 486f4d2769
commit 1da969736f

View file

@ -225,11 +225,6 @@ namespace Godot
return (real_t)Math.Round(s);
}
public static int RoundToInt(real_t s)
{
return (int)Math.Round(s);
}
public static int Sign(int s)
{
return s < 0 ? -1 : 1;