Skip to content

Commit

Permalink
Some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Jan 7, 2025
1 parent edea4ac commit 18cc804
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace Mutagen.Bethesda.Plugins.Order.DI;

/// <summary>
/// Provides listings added by the Creation Club systems
/// </summary>
public interface ICreationClubListingsProvider : IListingsProvider
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace Mutagen.Bethesda.Plugins.Order.DI;

/// <summary>
/// Provides listings that are assumed to be part of a load order even if they aren't explicitly listed
/// </summary>
public interface IImplicitListingsProvider : IListingsProvider
{
new IEnumerable<IModListingGetter> Get();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace Mutagen.Bethesda.Plugins.Order.DI;

/// <summary>
/// Provides load order listings explicitly listed in plugins.txt
/// </summary>
public interface IPluginListingsProvider : IListingsProvider
{
}
Expand Down

0 comments on commit 18cc804

Please sign in to comment.