Ejemplo n.º 1
0
 public CriticalPacketEntry(CriticalPacketEntry other)
 {
     diskfile = other.diskfile;
     offset   = other.offset;
     packet   = other.packet;
 }
Ejemplo n.º 2
0
 public CriticalPacketEntry(DiskFile _diskFile, ulong _offset, CriticalPacket _packet)
 {
     diskfile = _diskFile;
     offset   = _offset;
     packet   = _packet;
 }
Ejemplo n.º 3
0
 public CriticalPacketEntry()
 {
     diskfile = null;
     offset   = 0;
     packet   = null;
 }