UNPKG

@natewilcox/zelda-server

Version:

Server application for zelda multiplayer game

10 lines (9 loc) 261 B
import { Command } from "@colyseus/command"; import { GameRoom } from "../rooms/GameRoom"; type Payload = { client: any; }; export declare class LeaveCommand extends Command<GameRoom, Payload> { execute({ client }: Payload): Promise<void>; } export {};