mirror of
https://github.com/smyalygames/monopoly.git
synced 2026-01-03 18:28:48 +01: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);
|
|
}
|
|
}
|
|
}
|