mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
25 lines
633 B
C#
25 lines
633 B
C#
using Artemis.Core.Plugins.LayerElement;
|
|
using Artemis.Core.Plugins.Models;
|
|
|
|
namespace Artemis.Plugins.LayerElements.Noise
|
|
{
|
|
public class NoiseLayerElementProvider : LayerElementProvider
|
|
{
|
|
public NoiseLayerElementProvider(PluginInfo pluginInfo) : base(pluginInfo)
|
|
{
|
|
AddLayerElementDescriptor<NoiseLayerElement>("Noise", "A brush of that shows an animated random noise", "ScatterPlot");
|
|
}
|
|
|
|
public override void EnablePlugin()
|
|
{
|
|
}
|
|
|
|
public override void DisablePlugin()
|
|
{
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
}
|
|
}
|
|
} |