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

11 lines
416 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 PlayerCombinedInventory from "../inventories/PlayerCombinedInventory";
2024-11-29 15:00:48 +00:00
import MPClient from "../MPClient";
import Window from "./Window";
export default class WindowCrafting extends Window {
public constructor(inventory: PlayerCombinedInventory) {
super(InventoryType.CraftingTable, inventory, 45);
2024-11-29 15:00:48 +00:00
}
}