mirror of
https://github.com/smyalygames/monopoly.git
synced 2025-05-18 14:24:12 +02:00
21 lines
381 B
C#
21 lines
381 B
C#
using System;
|
|
|
|
namespace Mirror.Weaver
|
|
{
|
|
public static class Log
|
|
{
|
|
public static Action<string> WarningMethod;
|
|
public static Action<string> ErrorMethod;
|
|
|
|
public static void Warning(string msg)
|
|
{
|
|
WarningMethod(msg);
|
|
}
|
|
|
|
public static void Error(string msg)
|
|
{
|
|
ErrorMethod(msg);
|
|
}
|
|
}
|
|
}
|