import { Command } from "@colyseus/command"; export class Wait extends Command { async execute(number: number) { await this.delay(number); } }