| 12345678910111213 |
- using System.Collections.Generic;
- namespace ET
- {
- public class ArenaRobotNameComponent : Entity, IAwake
- {
- //姓氏 -> 竞技场机器人名字数据
- public Dictionary<string, ArenaRobotNameInfo> nameInfos = new Dictionary<string, ArenaRobotNameInfo>();
- //可用的姓氏
- public List<string> CanUseLastName = new List<string>();
- }
- }
|