public CriticalPacketEntry(CriticalPacketEntry other) { diskfile = other.diskfile; offset = other.offset; packet = other.packet; }
public CriticalPacketEntry(DiskFile _diskFile, ulong _offset, CriticalPacket _packet) { diskfile = _diskFile; offset = _offset; packet = _packet; }
public CriticalPacketEntry() { diskfile = null; offset = 0; packet = null; }