mirror of
				https://github.com/DerTyp7/defrain-shooter-unity.git
				synced 2025-11-04 07:08:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Mono.CecilX;
 | 
						|
 | 
						|
namespace Mirror.Weaver
 | 
						|
{
 | 
						|
    // not static, because ILPostProcessor is multithreaded
 | 
						|
    public interface Logger
 | 
						|
    {
 | 
						|
        void Warning(string message);
 | 
						|
        void Warning(string message, MemberReference mr);
 | 
						|
        void Error(string message);
 | 
						|
        void Error(string message, MemberReference mr);
 | 
						|
    }
 | 
						|
}
 |