mirror of
				https://github.com/smyalygames/monopoly.git
				synced 2025-10-31 18:37:40 +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);
 | |
|         }
 | |
|     }
 | |
| }
 | 
