7 lines
267 B
JavaScript
7 lines
267 B
JavaScript
import { Slower } from "./Slower";
|
|
export async function loadExternalSlowInteraction(engine) {
|
|
await engine.addInteractor("externalSlow", (container) => new Slower(container));
|
|
}
|
|
export * from "./Options/Classes/Slow";
|
|
export * from "./Options/Interfaces/ISlow";
|