public F12018PacketHeader(byte[] inputBytes)
 {
     packetFormat    = new LazyUShort(inputBytes, 0);
     packetVersion   = new LazyByte(inputBytes, 2);
     packetId        = new LazyByte(inputBytes, 3);
     sessionUID      = new LazyULong(inputBytes, 4);
     sessionTime     = new LazyFloat(inputBytes, 12);
     frameIdentifier = new LazyUInt(inputBytes, 16);
     playerCarIndex  = new LazyByte(inputBytes, 20);
 }
 public F12018PacketTelemetry(byte[] inputBytes)
 {
     speed    = new LazyUShort(inputBytes, 21);
     throttle = new LazyByte(inputBytes, 23);
 }