public RAFFileEntry(RAF raf, string path, uint offset, uint length)
 {
     this._raf     = raf;
     this.Path     = path;
     this.Offset   = offset;
     this.Length   = length;
     this.PathHash = this.GetPathHash();
 }
 public RAFFileEntry(RAF raf, BinaryReader br)
 {
     this._raf           = raf;
     this.PathHash       = br.ReadUInt32();
     this.Offset         = br.ReadUInt32();
     this.Length         = br.ReadUInt32();
     this._pathListIndex = br.ReadInt32();
 }