remove unneeded access modifier

This commit is contained in:
Jesse Plamondon-Willard 2020-08-23 19:00:46 -04:00
parent 76c926c396
commit 1ff4a0774e
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ namespace StardewModdingAPI
/// <param name="source">The map from which to copy.</param>
/// <param name="sourceArea">The tile area within the source map to copy, or <c>null</c> for the entire source map size. This must be within the bounds of the <paramref name="source"/> map.</param>
/// <param name="targetArea">The tile area within the target map to overwrite, or <c>null</c> to patch the whole map. The original content within this area will be erased. This must be within the bounds of the existing map.</param>
public void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null);
void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null);
}
}