using SkiaSharp;
namespace Artemis.Core.Models.Profile.LayerShapes
{
public abstract class LayerShape
{
protected LayerShape(Layer layer)
{
Layer = layer;
}
///
/// The layer this shape is attached to
///
public Layer Layer { get; set; }
///
/// Gets a the path outlining the shape
///
public SKPath Path { get; protected set; }
public abstract void CalculateRenderProperties();
}
}