UNPKG

comic-bubbles

Version:

Animated comic bubbles - what else?

14 lines (12 loc) 296 B
export class Arrow { constructor(parent) { this.painted = false this.width = undefined this.height = undefined this.verticalPos = undefined this.parent = parent } getPrefStr() { return this.parent === undefined ? 'arrow' : this.parent.getPrefStr() + '.arrow' } }