 8f9528879d
			
		
	
	8f9528879d
	
	
	
		
			
			fix ipc probably add individual syncshells and shit don't show shared data from paused people change text fix reverting Use InputText/Combo hybrids for MCDO ACLs (#81) * Use InputText/Combo hybrids for MCDO ACLs * Hybrid combo factoring, filtering, ordering, caching fix selecting latest created data on creation rename close to direct pairs add toggle to keep nearby poses active constantly fix gpose hanging fix potential cancelaltion on updateshareddata
		
			
				
	
	
		
			20 lines
		
	
	
		
			587 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			587 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MareSynchronos.API.Data;
 | |
| using MareSynchronos.FileCache;
 | |
| using MareSynchronos.Services.CharaData.Models;
 | |
| 
 | |
| namespace MareSynchronos.Services.CharaData;
 | |
| 
 | |
| public sealed class MareCharaFileDataFactory
 | |
| {
 | |
|     private readonly FileCacheManager _fileCacheManager;
 | |
| 
 | |
|     public MareCharaFileDataFactory(FileCacheManager fileCacheManager)
 | |
|     {
 | |
|         _fileCacheManager = fileCacheManager;
 | |
|     }
 | |
| 
 | |
|     public MareCharaFileData Create(string description, CharacterData characterCacheDto)
 | |
|     {
 | |
|         return new MareCharaFileData(_fileCacheManager, description, characterCacheDto);
 | |
|     }
 | |
| } |