ArenaRobotNameComponent.cs 376 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class ArenaRobotNameComponent : Entity, IAwake
  5. {
  6. //姓氏 -> 竞技场机器人名字数据
  7. public Dictionary<string, ArenaRobotNameInfo> nameInfos = new Dictionary<string, ArenaRobotNameInfo>();
  8. //可用的姓氏
  9. public List<string> CanUseLastName = new List<string>();
  10. }
  11. }