| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace Model
- {
- /// <summary>
- /// Component的Id与Owner Entity Id一样
- /// </summary>
- [BsonKnownTypes(typeof(AConfigComponent))]
- public abstract class Component : Object
- {
- [BsonIgnore]
- public Entity Owner { get; set; }
- public T GetOwner<T>() where T: Entity
- {
- return this.Owner as T;
- }
- protected Component()
- {
- }
- protected Component(long id): base(id)
- {
- }
- protected T GetComponent<T>() where T: Component
- {
- return this.Owner.GetComponent<T>();
- }
- public override void Dispose()
- {
- if (this.Id == 0)
- {
- return;
- }
-
- base.Dispose();
- }
- }
- }
|