12345678910111213141516171819 |
- using System.Collections.Generic;
- using ET;
- using UnityEngine;
- namespace GFGGame
- {
- public class ChatDataManager : SingletonBase<ChatDataManager>
- {
- public Dictionary<int, List<ChatData>> ChatDatas = new Dictionary<int, List<ChatData>>();//int:ChatType
- public Dictionary<long, List<ChatData>> PrivateChatDatas = new Dictionary<long, List<ChatData>>();//int:RoleId
- public void Clear()
- {
- ChatDatas.Clear();
- PrivateChatDatas.Clear();
- }
- }
- }
|