2020-12-03 19:22:37 +08:00

8 lines
173 B
TypeScript

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