GalleryUnitsComponent.cs 299 B

1234567891011
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class GalleryUnitsComponent : Entity, IAwake, IDestroy
  6. {
  7. [BsonIgnore]
  8. public Dictionary<long, GalleryUnit> GalleryUnitsDic = new Dictionary<long, GalleryUnit>();
  9. }
  10. }