mc-beta-server/server/windows/WindowCrafting.ts

10 lines
338 B
TypeScript
Raw Normal View History

2024-11-29 15:00:48 +00:00
import InventoryType from "../enums/InventoryType";
import Inventory from "../inventories/Inventory";
import MPClient from "../MPClient";
import Window from "./Window";
export default class WindowCrafting extends Window {
public constructor(mpClient: MPClient) {
super(InventoryType.CraftingTable, new Inventory(45, "Crafting"));
}
}