2022-09-03 16:24:44 +02:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
|
|
|
import { tunica } from './tunica.mjs'
|
2021-09-13 22:03:08 +02:00
|
|
|
|
2022-09-03 16:24:44 +02:00
|
|
|
// Setup our new design
|
|
|
|
const Tiberius = new Design({
|
|
|
|
data,
|
|
|
|
parts: [tunica],
|
|
|
|
})
|
2021-09-13 22:03:08 +02:00
|
|
|
|
2022-06-14 13:09:17 +02:00
|
|
|
// Named exports
|
2022-09-03 16:24:44 +02:00
|
|
|
export { tunica, Tiberius }
|