From 9e2e6bb1e236e5d99d74dca0cd5d31d533b76c2e Mon Sep 17 00:00:00 2001 From: Xavier Cho Date: Sat, 14 Apr 2018 09:15:20 +0900 Subject: [PATCH] Remove duplicated declaration of RoundToInt() from Mathf --- modules/mono/glue/cs_files/Mathf.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/mono/glue/cs_files/Mathf.cs b/modules/mono/glue/cs_files/Mathf.cs index bbee106018f..040e7bf5649 100644 --- a/modules/mono/glue/cs_files/Mathf.cs +++ b/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;