mc-beta-server/server/windows/WindowChest.ts
Holly 2e7535bf89
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m16s
working inventories
2024-12-02 00:25:03 +00:00

11 lines
No EOL
435 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 WindowChest extends Window {
public constructor(mpClient: MPClient, inventory: PlayerCombinedInventory) {
super(InventoryType.Chest, inventory, mpClient, 62);
}
}