From 1da969736f54f55e7a9541f18449852e793d48a9 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 (cherry picked from commit 9e2e6bb1e236e5d99d74dca0cd5d31d533b76c2e) --- 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 c32d5c420de..0d20a125632 100644 --- a/modules/mono/glue/cs_files/Mathf.cs +++ b/modules/mono/glue/cs_files/Mathf.cs @@ -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;