mc-beta-server/server/windows/WindowCrafting.ts
Holly 7c59d531ae
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m16s
chests work better i suppose, but it crashes now :c
2024-12-01 00:19:32 +00:00

11 lines
No EOL
416 B
TypeScript

import InventoryType from "../enums/InventoryType";
import Inventory from "../inventories/Inventory";
import PlayerCombinedInventory from "../inventories/PlayerCombinedInventory";
import MPClient from "../MPClient";
import Window from "./Window";
export default class WindowCrafting extends Window {
public constructor(inventory: PlayerCombinedInventory) {
super(InventoryType.CraftingTable, inventory, 45);
}
}