Explorar o código

Remove duplicated declaration of RoundToInt() from Mathf

Xavier Cho %!s(int64=7) %!d(string=hai) anos
pai
achega
9e2e6bb1e2
Modificáronse 1 ficheiros con 0 adicións e 5 borrados
  1. 0 5
      modules/mono/glue/cs_files/Mathf.cs

+ 0 - 5
modules/mono/glue/cs_files/Mathf.cs

@@ -227,11 +227,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;