Profile.GetList now also returns virtual path

This commit is contained in:
RisaDev
2024-03-25 01:53:57 +03:00
parent 6777f9db6e
commit b4a086ec3a
3 changed files with 15 additions and 10 deletions

View File

@@ -17,6 +17,7 @@ public partial class CustomizePlusIpc : IDisposable
private readonly HookingService _hookingService;
private readonly ProfileManager _profileManager;
private readonly GameObjectService _gameObjectService;
private readonly ProfileFileSystem _profileFileSystem;
private readonly ArmatureChanged _armatureChangedEvent;
@@ -31,6 +32,7 @@ public partial class CustomizePlusIpc : IDisposable
HookingService hookingService,
ProfileManager profileManager,
GameObjectService gameObjectService,
ProfileFileSystem profileFileSystem,
ArmatureChanged armatureChangedEvent)
{
_pluginInterface = pluginInterface;
@@ -38,6 +40,7 @@ public partial class CustomizePlusIpc : IDisposable
_hookingService = hookingService;
_profileManager = profileManager;
_gameObjectService = gameObjectService;
_profileFileSystem = profileFileSystem;
_armatureChangedEvent = armatureChangedEvent;