mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-20 23:07:51 +01:00
25 lines
906 B
C#
25 lines
906 B
C#
using OtterGui.Classes;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary> Triggered whenever a new mod discovery has finished. </summary>
|
|
public sealed class ModDiscoveryFinished() : EventWrapper<ModDiscoveryFinished.Priority>(nameof(ModDiscoveryFinished))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="UI.ModsTab.ModFileSystemSelector.RestoreLastSelection"/>
|
|
ModFileSystemSelector = -200,
|
|
|
|
/// <seealso cref="Collections.Cache.CollectionCacheManager.OnModDiscoveryFinished"/>
|
|
CollectionCacheManager = -100,
|
|
|
|
/// <seealso cref="Collections.Manager.CollectionStorage.OnModDiscoveryFinished"/>
|
|
CollectionStorage = 0,
|
|
|
|
/// <seealso cref="Mods.Manager.ModCacheManager.OnModDiscoveryFinished"/>
|
|
ModCacheManager = 0,
|
|
|
|
/// <seealso cref="Mods.Manager.ModFileSystem.Reload"/>
|
|
ModFileSystem = 0,
|
|
}
|
|
}
|