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