using Minint.Core.Models; namespace Minint.Core.Services; public interface IFloodFillService { /// /// Flood-fills a contiguous region of identical color starting at (, ) /// with . Uses 4-connectivity (up/down/left/right). /// void Fill(MinintLayer layer, int x, int y, int newColorIndex, int width, int height); }