mc-beta-server/server/windows/WindowChest.ts
Holly 6492f7c363
All checks were successful
Node.js Build / build (20.x) (push) Successful in 5m16s
make the chest gui work sorta kinda, yeah.
2024-11-26 19:24:08 +00:00

9 lines
No EOL
273 B
TypeScript

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