Пример #1
0
 public UOFileMul(string file, string idxfile, int count, int patch = -1, bool load = true) : base(file)
 {
     _idxFile = new UOFileIdxMul(idxfile);
     _count   = count;
     _patch   = patch;
     Load(load);
 }
Пример #2
0
 public UOFileMul(string file, string idxfile, int count, int patch = -1) : this(file)
 {
     _idxFile = new UOFileIdxMul(idxfile);
     _count   = count;
     _patch   = patch;
 }