mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Remove duplicated declaration of RoundToInt() from Mathf
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user