| 1234567891011 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- public class GalleryUnitsComponent : Entity, IAwake, IDestroy
- {
- [BsonIgnore]
- public Dictionary<long, GalleryUnit> GalleryUnitsDic = new Dictionary<long, GalleryUnit>();
- }
- }
|