using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RichCreator.Utility.Structs { /// /// 普通颜色数组项 /// public class ZTColorArrayItem:ColorArrayItem { public ZTColorArrayItem(ZTPoint offset, ZTColor color):base(offset,color) {} public override bool Compare(byte r, byte g, byte b) { if (r != this.Color.Red || g != this.Color.Green || b != this.Color.Blue) { return false; } return true; } } }