UNPKG

jj-spielfigur-3d

Version:

Comic-Figures and Archetypes in 3D for Games / E-Learning drawn by Jens Janetzki.

15 lines (13 loc) 300 B
import round from './parts/head/round.js' import afraid from './parts/head/afraid.js' export default function (head){ switch (head.head.type) { case 'round': this.head = new round(head) break; case 'afraid': this.head = new afraid(head) break; } return this.head }