import { BasePart } from "./BasePart"; export class GlassesPart extends BasePart { protected setSocketZIndex(): void { if (this.socketNode) { this.socketNode.setSiblingIndex(this.socketNode.parent.children.length); } } }