CustomSuitInfosComponent.cs 424 B

123456789101112131415
  1. using MongoDB.Bson.Serialization.Attributes;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. public class CustomSuitInfosComponent : Entity, IAwake, IDestroy, IDeserialize, ITransfer, IUnitCache
  6. {
  7. [BsonIgnore] public Dictionary<int, CustomSuitInfo> suitInfos = new Dictionary<int, CustomSuitInfo>();
  8. //当前存储索引
  9. public int CurrentPos;
  10. public string StrId = "";
  11. }
  12. }