forked from Cookies_Public/AquaDX
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			387 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			387 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Diagnostics.CodeAnalysis;
 | |
| 
 | |
| namespace AquaMai
 | |
| {
 | |
|     [SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
 | |
|     public class Config
 | |
|     {
 | |
|         public UXConfig UX { get; set; }
 | |
|         
 | |
|         public class UXConfig
 | |
|         {
 | |
|             public bool SkipWarningScreen { get; set; }
 | |
|             public bool SinglePlayer { get; set; }
 | |
|         }
 | |
|     }
 | |
| } | 
