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.

9 lines
156 B
C#

namespace RobloxLegacy.Utilities;
public static class Logger
{
public static void Log(string msg)
{
Console.Write($"[+] {msg}");
}
}