using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RichCreator.Utility.Structs { public abstract class ColorArrayItem { public ColorArrayItem(ZTPoint offset, ZTColor color) { this.Offset = offset; this.Color = color; } public ZTPoint Offset; public ZTColor Color; public abstract bool Compare(byte r, byte g, byte b); } }