blob: 1f1ac6a96b07361e3fd45c217d51ba86e04e9774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI
{
/// <summary>Indicates how a map should be patched.</summary>
public enum PatchMapMode
{
/// <summary>Replace matching tiles. Target tiles missing in the source area are kept as-is.</summary>
Overlay,
/// <summary>Replace all tiles on layers that exist in the source map.</summary>
ReplaceByLayer,
/// <summary>Replace all tiles with the source map.</summary>
Replace
}
}
|