mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
14 lines
442 B
C#
14 lines
442 B
C#
namespace Artemis.Core.Plugins.Modules.ActivationRequirements
|
|
{
|
|
/// <summary>
|
|
/// Evaluates to true or false by checking requirements specific to the implementation
|
|
/// </summary>
|
|
public interface IModuleActivationRequirement
|
|
{
|
|
/// <summary>
|
|
/// Called to determine whether the activation requirement is met
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool Evaluate();
|
|
}
|
|
} |