ChatComponent.cs 264 B

12345678910
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class ChatComponent : Entity, IAwake, IDestroy
  5. {
  6. //ChatType_Id -> List<ChatInfo>
  7. public Dictionary<string, List<ChatInfo>> ChatInfo = new Dictionary<string, List<ChatInfo>>();
  8. }
  9. }