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.

14 lines (12 loc) 360 B
/** * @packet-id "11" * @description **Death** is a signal for your player, indicating that they have died. */ export default class Death { public static readonly PACKET_ID = "11"; public static readonly PACKET_NAME = "Death"; public readonly PACKET_NAME = "Death"; static parse(_data: unknown): Death { return new Death(); } }