2016-03-23 08:36:04 +08:00
|
|
|
|
using StardewValley.Menus;
|
2016-03-01 14:35:52 +08:00
|
|
|
|
|
|
|
|
|
namespace StardewModdingAPI.Inheritance.Menus
|
|
|
|
|
{
|
|
|
|
|
public class SInventoryPage : InventoryPage
|
|
|
|
|
{
|
|
|
|
|
public InventoryPage BaseInventoryPage { get; private set; }
|
|
|
|
|
|
|
|
|
|
public static SInventoryPage ConstructFromBaseClass(InventoryPage baseClass)
|
|
|
|
|
{
|
|
|
|
|
SInventoryPage s = new SInventoryPage(0,0,0,0);
|
|
|
|
|
s.BaseInventoryPage = baseClass;
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SInventoryPage(int x, int y, int width, int height) : base(x, y, width, height)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|