using System; using System.Collections.Generic; using System.Linq; public partial class FaceConfig : IConfigPostProcess { //<表情包ID,List> private static Dictionary> resultDict = new Dictionary>(); public void OnConfigParseCompleted() { if (frameType == 1) { if (!resultDict.ContainsKey(EmojiPackID)) { resultDict[EmojiPackID] = new List(); } resultDict[EmojiPackID].Add(name); } } public static Dictionary> GetEmojiPackList() { return resultDict; } }