Remove method rewrite not needed anymore
This commit is contained in:
parent
0b4ea4a22a
commit
20802f7ad9
|
@ -1,12 +0,0 @@
|
||||||
using StardewValley.Menus;
|
|
||||||
|
|
||||||
namespace StardewModdingAPI.Framework.ModLoading.RewriteFacades
|
|
||||||
{
|
|
||||||
public class DialogueBoxMethods : DialogueBox
|
|
||||||
{
|
|
||||||
public DialogueBoxMethods(string dialogue)
|
|
||||||
: base(dialogue)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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
|
|
|
@ -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
|
|
Loading…
Reference in New Issue