node-insim
Version:
An InSim library for NodeJS with TypeScript support
15 lines (14 loc) • 357 B
TypeScript
import { Packet } from './base';
import { PacketType } from './enums';
/**
* AutoX Object
*
* If an autocross object is hit (2 second time penalty) this packet is sent.
*/
export declare class IS_AXO extends Packet {
readonly Size = 4;
readonly Type = PacketType.ISP_AXO;
readonly ReqI = 0;
/** Player's unique id */
PLID: number;
}