using System.Collections.Generic; using UnityEngine; // Shapes © Freya Holmér - https://twitter.com/FreyaHolmer/ // Website & Documentation - https://acegikmo.com/shapes/ namespace Shapes { internal interface IFillableMpb { List fillType { get; } List fillSpace { get; } List fillStart { get; } List fillEnd { get; } List fillColorEnd { get; } } internal interface IDashableMpb { List dashSize { get; } List dashType { get; } List dashShapeModifier { get; } List dashSpace { get; } List dashSnap { get; } List dashOffset { get; } List dashSpacing { get; } } }