diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-21 22:29:42 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-21 22:29:42 -0400 |
commit | f52370f6fa1fb3ab82a5c741fea2e8e5aee60223 (patch) | |
tree | 1110048fe9a2a65958674bfcf27a35e2ae7acab1 /src/SMAPI/Metadata | |
parent | 4468f390985e4cdff330147b4e6c6089aedfb48c (diff) | |
download | SMAPI-f52370f6fa1fb3ab82a5c741fea2e8e5aee60223.tar.gz SMAPI-f52370f6fa1fb3ab82a5c741fea2e8e5aee60223.tar.bz2 SMAPI-f52370f6fa1fb3ab82a5c741fea2e8e5aee60223.zip |
rename facade classes
Diffstat (limited to 'src/SMAPI/Metadata')
-rw-r--r-- | src/SMAPI/Metadata/InstructionMetadata.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Metadata/InstructionMetadata.cs b/src/SMAPI/Metadata/InstructionMetadata.cs index b7aad9da..89430a11 100644 --- a/src/SMAPI/Metadata/InstructionMetadata.cs +++ b/src/SMAPI/Metadata/InstructionMetadata.cs @@ -33,7 +33,7 @@ namespace StardewModdingAPI.Metadata ****/ // rewrite for crossplatform compatibility if (platformChanged) - yield return new MethodParentRewriter(typeof(SpriteBatch), typeof(SpriteBatchMethods)); + yield return new MethodParentRewriter(typeof(SpriteBatch), typeof(SpriteBatchFacade)); // rewrite for Stardew Valley 1.3 yield return new StaticFieldToConstantRewriter<int>(typeof(Game1), "tileSize", Game1.tileSize); |