1
0
Fork 0

🚧 Benjamin WIP

This commit is contained in:
Joost De Cock 2019-07-08 15:54:19 +02:00 committed by Joost De Cock
parent 45498afbba
commit c68c219fe3
9 changed files with 301 additions and 10831 deletions

View file

@ -3,11 +3,19 @@ import plugins from "@freesewing/plugin-bundle";
import config from "../config";
// Parts
import draftBase from "./base";
import draftBow1 from "./bow1";
import draftBow2 from "./bow2";
import draftBow3 from "./bow3";
import draftRibbon from "./ribbon";
// Create new design
const benjamin = new freesewing.Design(config, plugins);
// Attach draft methods to prototype
benjamin.prototype.draftBase = draftBase;
benjamin.prototype.draftBow1 = draftBow1;
benjamin.prototype.draftBow2 = draftBow2;
benjamin.prototype.draftBow3 = draftBow3;
benjamin.prototype.draftRibbon = draftRibbon;
export default benjamin;