summaryrefslogtreecommitdiff
path: root/src/SMAPI/PatchMode.cs
blob: 34d3007da5b075a243c87a8066b1d3c4c28cc8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI
{
    /// <summary>Indicates how an image should be patched.</summary>
    public enum PatchMode
    {
        /// <summary>Erase the original content within the area before drawing the new content.</summary>
        Replace,

        /// <summary>Draw the new content over the original content, so the original content shows through any transparent pixels.</summary>
        Overlay
    }
}