Remove method rewrite not needed anymore

This commit is contained in:
ZaneYork 2020-08-27 11:37:33 +08:00
parent 0b4ea4a22a
commit 20802f7ad9
4 changed files with 0 additions and 66 deletions

View File

@ -1,12 +0,0 @@
using StardewValley.Menus;
namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
{
public class DialogueBoxMethods : DialogueBox
{
public DialogueBoxMethods(string dialogue)
: base(dialogue)
{
}
}
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using StardewValley;
using StardewValley.Menus;
namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
{
public class DiscreteColorPickerMethods : DiscreteColorPicker
{
public DiscreteColorPickerMethods(int xPosition, int yPosition, int startingColor = 0, Item itemToDrawColored = null)
:base(xPosition, yPosition, startingColor, itemToDrawColored)
{
}
}
}

View File

@ -1,18 +0,0 @@
#if SMAPI_FOR_MOBILE
using System.Diagnostics.CodeAnalysis;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using StardewValley;
namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
{
public class HUDMessageMethods : HUDMessage
{
public HUDMessageMethods(string message, int whatType)
: base(message, whatType, -1)
{
}
}
}
#endif

View File

@ -1,19 +0,0 @@
#if SMAPI_FOR_MOBILE
using System.Diagnostics.CodeAnalysis;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using StardewValley;
using StardewValley.Menus;
namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
{
public class MapPageMethods : MapPage
{
public MapPageMethods(int x, int y, int width, int height)
: base(x, y, width, height, 1f, 1f)
{
}
}
}
#endif