using System.Collections.Generic; using ET; using UnityEngine; namespace GFGGame { public class ChatDataManager : SingletonBase { public Dictionary> ChatDatas = new Dictionary>();//int:ChatType public Dictionary> PrivateChatDatas = new Dictionary>();//int:RoleId public void Clear() { ChatDatas.Clear(); PrivateChatDatas.Clear(); } } }