@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
19 lines • 422 B
TypeScript
export class InteractionCommandSet {
/**
*
* @type {Object<InteractionCommand>}
*/
commands: any;
/**
*
* @param {InteractionCommand} command
*/
add(command: InteractionCommand): void;
/**
*
* @param {string} id
* @returns {InteractionCommand}
*/
getCommandById(id: string): InteractionCommand;
}
//# sourceMappingURL=InteractionCommandSet.d.ts.map