node-insim
Version:
An InSim library for NodeJS with TypeScript support
13 lines (12 loc) • 315 B
TypeScript
import { Packet } from './base';
import { PacketType } from './enums';
/**
* PLayer Pits (go to settings - stays in player list)
*/
export declare class IS_PLP extends Packet {
readonly Size = 4;
readonly Type = PacketType.ISP_PLP;
readonly ReqI = 0;
/** Player's unique id */
PLID: number;
}