1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  | using System;  
 |  using System.Collections.Generic;  
 |  using System.Linq;  
 |    
 |  public partial class FaceConfig : IConfigPostProcess  
 |  {  
 |      //<表情包ID,List<Name>>  
 |      private static Dictionary<int, List<string>> resultDict = new Dictionary<int, List<string>>();  
 |    
 |      public void OnConfigParseCompleted()  
 |      {  
 |          if (frameType == 1)  
 |          {  
 |              if (!resultDict.ContainsKey(EmojiPackID))  
 |              {  
 |                  resultDict[EmojiPackID] = new List<string>();  
 |              }  
 |              resultDict[EmojiPackID].Add(name);  
 |          }  
 |      }  
 |    
 |      public static Dictionary<int, List<string>> GetEmojiPackList()  
 |      {  
 |          return resultDict;  
 |      }  
 |    
 |  } 
 |  
  |