UNPKG

node-insim

Version:

An InSim library for NodeJS with TypeScript support

11 lines (10 loc) 253 B
import { Packet } from './base'; import { PacketType } from './enums'; export class IS_NONE extends Packet { constructor() { super(...arguments); this.Size = 4; this.Type = PacketType.ISP_NONE; this.ReqI = 0; } }