| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace Model
- {
- [BsonIgnoreExtraElements]
- [BsonKnownTypes(typeof(AConfigComponent))]
- public abstract class Component: Disposer
- {
- [BsonIgnore]
- public Entity Entity { get; set; }
- public T GetEntity<T>() where T : Entity
- {
- return this.Entity as T;
- }
- protected Component()
- {
- this.Id = 1;
- }
-
- public T GetComponent<T>() where T : Component
- {
- return this.Entity.GetComponent<T>();
- }
- public override void Dispose()
- {
- if (this.Id == 0)
- {
- return;
- }
- base.Dispose();
- this.Entity?.RemoveComponent(this.GetType());
- }
- }
- }
|