OtherRoleInfosComponent.cs 297 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public class OtherRoleInfosComponent : Entity, IAwake, IDestroy
  5. {
  6. //推荐的角色等级
  7. public int RecommondLvl;
  8. //推荐的角色id列表
  9. public List<long> RecommondRoleIds = new List<long>();
  10. }
  11. }