namespace StardewModdingAPI { /// Indicates how an image should be patched. public enum PatchMode { /// Erase the original content within the area before drawing the new content. Replace, /// Draw the new content over the original content, so the original content shows through any transparent pixels. Overlay } }