import { IframeApiContribution, sendToWorkadventure } from "./IframeApiContribution"; export class WorkadventureControlsCommands extends IframeApiContribution { callbacks = []; disablePlayerControls(): void { sendToWorkadventure({ type: "disablePlayerControls", data: null }); } restorePlayerControls(): void { sendToWorkadventure({ type: "restorePlayerControls", data: null }); } } export default new WorkadventureControlsCommands();