mirror of
				https://github.com/chev2/botw-toolset.git
				synced 2025-10-30 08:12:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			484 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			484 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace BOTWToolset.IO.SARC
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Stores info on the SFNT header (SARC file name table), used in conjunction with <see cref="SARC"/>.
 | |
|     /// </summary>
 | |
|     public struct SFNT
 | |
|     {
 | |
|         public string Magic { get => _magic; set => _magic = value; }
 | |
|         private string _magic;
 | |
| 
 | |
|         public ushort HeaderLength { get => _headerLength; set => _headerLength = value; }
 | |
|         private ushort _headerLength;
 | |
| 
 | |
|         public string[] FileNames;
 | |
|     }
 | |
| }
 | 
