ComponentAttribute.cs 275 B

123456789101112
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace ETModel
  3. {
  4. [BsonKnownTypes(typeof(AConfigComponent))]
  5. [BsonKnownTypes(typeof(UnitGateComponent))]
  6. [BsonKnownTypes(typeof(NumericComponent))]
  7. [BsonKnownTypes(typeof(Entity))]
  8. public partial class Component
  9. {
  10. }
  11. }