using System.Collections.Generic; namespace Artemis.Core; /// /// Represents a class that depends on plugin features /// public interface IPluginFeatureDependent { /// /// Gets the plugin features this class depends on, may contain the same plugin feature twice if depending on it in multiple ways. /// /// A of this class depends on. public IEnumerable GetFeatureDependencies(); }