This repository has been archived on 2025-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
2025-05-01 15:45:01 -07:00

14 lines
293 B
C#

namespace RobloxLegacy.Utilities;
public static class Logger
{
public static void Info(string msg)
{
Console.Write($"[+] {msg}\n", ConsoleColor.Gray);
}
public static void Error(string msg)
{
Console.Write($"[!] {msg}\n", ConsoleColor.Red);
}
}