You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
13 lines
250 B
C#
13 lines
250 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
public static class Logger
|
|
{
|
|
public static void Log(string message)
|
|
{
|
|
Dpr.LogSender.Instance.Log(message);
|
|
}
|
|
} |