import type { Engine } from "@tsparticles/engine"; import { ShapeDrawer } from "./ShapeDrawer.js"; /** * @param engine - the engine instance to load the shape into */ export async function loadTemplateShape(engine: Engine): Promise { await engine.addShape(new ShapeDrawer()); }