Removed URLs file from bot config

This commit is contained in:
2023-09-07 12:50:36 +03:00
parent e929646e8e
commit 92a18e3495
6 changed files with 35 additions and 154 deletions

View File

@@ -4,7 +4,7 @@ using System.Threading;
namespace DiscordBot.Utilities;
public static class Utilities
public static class ConsoleUtilities
{
private static readonly Dictionary<char, ConsoleColor> Colors = new()
{
@@ -16,8 +16,7 @@ public static class Utilities
};
private static readonly char ColorPrefix = '&';
private static bool CanAproximateTo(this float f, float y)
{
return MathF.Abs(f - y) < 0.000001;