summaryrefslogtreecommitdiff
path: root/src/SMAPI/IAssetDataForMap.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-08-23 19:00:46 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-08-23 19:00:46 -0400
commit1ff4a0774e790acfb0f8a54d8e87f9540876072e (patch)
treef7afde0549260ba42d0779a91f2da39b483afd07 /src/SMAPI/IAssetDataForMap.cs
parent76c926c396092f02441a62937bfc5d437e582e57 (diff)
downloadSMAPI-1ff4a0774e790acfb0f8a54d8e87f9540876072e.tar.gz
SMAPI-1ff4a0774e790acfb0f8a54d8e87f9540876072e.tar.bz2
SMAPI-1ff4a0774e790acfb0f8a54d8e87f9540876072e.zip
remove unneeded access modifier
Diffstat (limited to 'src/SMAPI/IAssetDataForMap.cs')
-rw-r--r--src/SMAPI/IAssetDataForMap.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/IAssetDataForMap.cs b/src/SMAPI/IAssetDataForMap.cs
index 769ca07c..bfaba9ba 100644
--- a/src/SMAPI/IAssetDataForMap.cs
+++ b/src/SMAPI/IAssetDataForMap.cs
@@ -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);
}
}