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) • 322 B
text/typescript
/**
* @packet-id "pp"
* @description **Pong** is used to measure the ping.
*/
export default class Pong {
public static readonly PACKET_ID = "pp";
public static readonly PACKET_NAME = "Pong";
public readonly PACKET_NAME = "Pong";
static parse(_data: unknown): Pong {
return new Pong();
}
}