mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
379 B
C#
16 lines
379 B
C#
using System.Collections.Generic;
|
|
using Artemis.Core.Plugins.LayerElement;
|
|
using SkiaSharp;
|
|
|
|
namespace Artemis.Plugins.LayerElements.Brush
|
|
{
|
|
public class BrushLayerElementSettings : LayerElementSettings
|
|
{
|
|
public BrushLayerElementSettings()
|
|
{
|
|
Colors = new List<SKColor>();
|
|
}
|
|
|
|
public List<SKColor> Colors { get; set; }
|
|
}
|
|
} |