import { FunkyArray } from "../../funkyArray"; import { ItemStack } from "./ItemStack"; import { ContainerSlot } from "./Slot"; export abstract class Container { public itemSlots:Array; public itemStacks:Array; public constructor() { this.itemSlots = new Array(); this.itemStacks = new Array(); } }