diff options
Diffstat (limited to 'src/StardewModdingAPI/Inheritance/Menus/SInventoryPage.cs')
-rw-r--r-- | src/StardewModdingAPI/Inheritance/Menus/SInventoryPage.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/StardewModdingAPI/Inheritance/Menus/SInventoryPage.cs b/src/StardewModdingAPI/Inheritance/Menus/SInventoryPage.cs deleted file mode 100644 index 436b834d..00000000 --- a/src/StardewModdingAPI/Inheritance/Menus/SInventoryPage.cs +++ /dev/null @@ -1,19 +0,0 @@ -using StardewValley.Menus; - -namespace StardewModdingAPI.Inheritance.Menus -{ - public class SInventoryPage : InventoryPage - { - public SInventoryPage(int x, int y, int width, int height) : base(x, y, width, height) - { - } - - public InventoryPage BaseInventoryPage { get; private set; } - - public static SInventoryPage ConstructFromBaseClass(InventoryPage baseClass) - { - var s = new SInventoryPage(0, 0, 0, 0) {BaseInventoryPage = baseClass}; - return s; - } - } -}
\ No newline at end of file |