mc-beta-server/server/windows/WindowCrafting.ts
Holly 65d31be4f9
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m16s
crafting table
2024-11-29 15:00:48 +00:00

10 lines
No EOL
338 B
TypeScript

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"));
}
}