UNPKG

moomooio-client

Version:

MooMooIO-Client is a client-side wrapper API designed for the game MooMoo.io. This package aims to provide a simple yet powerful API for creating clones, mods, or plugins for MooMoo.io.

15 lines (12 loc) 412 B
/** * @packet-id "d" * @description **Disconnect** is a signal for your player, indicating that the connection is lost (disconnected) */ export default class Disconnect { public static readonly PACKET_ID = "d"; public static readonly PACKET_NAME = "Disconnect"; public readonly PACKET_NAME = "Disconnect"; static parse(_data: unknown): Disconnect { return new Disconnect(); } }