namespace StardewModdingAPI
{
/// Indicates how a map should be patched.
public enum PatchMapMode
{
/// Replace matching tiles. Target tiles missing in the source area are kept as-is.
Overlay,
/// Replace all tiles on layers that exist in the source map.
ReplaceByLayer,
/// Replace all tiles with the source map.
Replace
}
}