import { Point, ObservablePoint, Rectangle } from '../math'; export default class RectPackder { /** * @param {PIXI.Texture} texture - The texture for this sprite */ constructor(texture) { super(); this.layers = []; // shelfs.. } addRect(rect) { } render() { } }