public IXExplorerDictionary(ChitinKeySuperDictionary ckeyDict)
 {
     foreach (KeyValuePair <ResourceStruct.ResourceType, ResourceStruct.ResInfo> kvp
              in ResourceStruct.OrderedListNames)
     {
         this.Build(kvp.Value.name, kvp.Key, ckeyDict[kvp.Key]);
     }
 }
示例#2
0
        public ChitinIndex(string chitinFile)
        {
            this.chitinFile = chitinFile;

            this.ckeyDictionary  = new ChitinKeySuperDictionary(keyLength);
            this.cbiffCollection = new ChitinBiffCollection();

            this.RefreshChitinIndex(this.chitinFile);
        }