mc-beta-server/server/windows/WindowChest.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

10 lines
No EOL
369 B
TypeScript

import InventoryType from "../enums/InventoryType";
import Inventory from "../inventories/Inventory";
import PlayerCombinedInventory from "../inventories/PlayerCombinedInventory";
import Window from "./Window";
export default class WindowChest extends Window {
public constructor(inventory: PlayerCombinedInventory) {
super(InventoryType.Chest, inventory, 62);
}
}