mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
27 lines
761 B
C#
27 lines
761 B
C#
using System;
|
|
|
|
namespace Artemis.Core.LayerEffects
|
|
{
|
|
/// <inheritdoc />
|
|
public class LayerEffectConfigurationDialog<T> : LayerEffectConfigurationDialog where T : EffectConfigurationViewModel
|
|
{
|
|
/// <inheritdoc />
|
|
public override Type Type => typeof(T);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Describes a UI tab for a specific layer effect
|
|
/// </summary>
|
|
public abstract class LayerEffectConfigurationDialog
|
|
{
|
|
/// <summary>
|
|
/// The layer effect this dialog belongs to
|
|
/// </summary>
|
|
internal BaseLayerEffect LayerEffect { get; set; }
|
|
|
|
/// <summary>
|
|
/// The type of view model the tab contains
|
|
/// </summary>
|
|
public abstract Type Type { get; }
|
|
}
|
|
} |