| 28 | NetLib::ReadByteArray(data, &offset, length - 2, &value[0]); |
| 29 | } |
| 30 | void IPopUnk::WriteBytes(u8* buffer, int* offset) const |
| 31 | { |
| 32 | NetLib::WriteByte08(buffer, offset, code); |
| 33 | NetLib::WriteByte08(buffer, offset, length); |
| 34 | NetLib::WriteByteArray(buffer, offset, length - 2, &value[0]); |
| 35 | } |
| 36 | |
| 37 | IPopRouterAlert::IPopRouterAlert(u16 parValue) |
| 38 | : value{parValue} |
nothing calls this directly
no test coverage detected