aotds-docks/src/lib/shipDux/structure/index.js

16 lines
355 B
JavaScript
Raw Normal View History

2022-04-10 21:42:29 +00:00
import { Updux } from "updux";
2022-03-04 00:45:47 +00:00
2022-04-10 21:42:29 +00:00
import hull from "./hull.js";
import screens from "./screens.js";
import cargo from "./cargo.js";
import armor from "./armor.js";
import streamlining from "./streamlining.js";
2022-03-04 00:45:47 +00:00
const dux = new Updux({
2022-04-10 21:42:29 +00:00
subduxes: { hull, screens, cargo, streamlining, armor },
initial: {
uiTransform: "",
},
2022-03-04 00:45:47 +00:00
});
export default dux;