aotds-docks/src/lib/components/ShipEdit/Propulsion.svelte

14 lines
302 B
Svelte
Raw Normal View History

2023-03-21 14:43:26 +00:00
<Section label="propulsion">
2023-03-22 20:18:10 +00:00
<Drive {...drive} />
<Ftl {...ftl} />
2023-03-21 14:43:26 +00:00
</Section>
2023-04-23 16:35:58 +00:00
<script>
2023-03-21 14:43:26 +00:00
import Section from "$lib/components/Section.svelte";
import Drive from "./Propulsion/Engine.svelte";
import Ftl from "./Propulsion/Ftl.svelte";
2023-03-22 20:18:10 +00:00
export let drive = {};
export let ftl = {};
2023-03-21 14:43:26 +00:00
</script>