diff options
author | Samuel Barney <samjbarney@gmail.com> | 2013-12-29 15:26:29 +0100 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2013-12-29 15:26:29 +0100 |
commit | 8d83297499db730b06b188eafd18ccbb2c8ac5d9 (patch) | |
tree | 1883b846c262d208164d2e0d4f16706195bc92eb /src/Entities | |
parent | Switched to using Xoft's multibase inheritance structure. (diff) | |
download | cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar.gz cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar.bz2 cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar.lz cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar.xz cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.tar.zst cuberite-8d83297499db730b06b188eafd18ccbb2c8ac5d9.zip |
Diffstat (limited to 'src/Entities')
-rw-r--r-- | src/Entities/Compoments/AIComponent.h | 2 | ||||
-rw-r--r-- | src/Entities/Compoments/AttackComponent.h | 2 | ||||
-rw-r--r-- | src/Entities/Compoments/EnvironmentComponent.h | 2 | ||||
-rw-r--r-- | src/Entities/Compoments/InteractionComponent.h | 2 | ||||
-rw-r--r-- | src/Entities/Compoments/ModelComponent.h | 2 | ||||
-rw-r--r-- | src/Entities/Compoments/MovementComponent.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/Entities/Compoments/AIComponent.h b/src/Entities/Compoments/AIComponent.h index 483fe4164..1659e2304 100644 --- a/src/Entities/Compoments/AIComponent.h +++ b/src/Entities/Compoments/AIComponent.h @@ -11,4 +11,4 @@ public: virtual void Tick(float a_Dt, cChunk & a_Chunk){} -};
\ No newline at end of file +}; diff --git a/src/Entities/Compoments/AttackComponent.h b/src/Entities/Compoments/AttackComponent.h index 1b465ef4f..080f764b6 100644 --- a/src/Entities/Compoments/AttackComponent.h +++ b/src/Entities/Compoments/AttackComponent.h @@ -11,4 +11,4 @@ public: virtual void OnAttackEntity(cEntity * a_Entity){} -};
\ No newline at end of file +}; diff --git a/src/Entities/Compoments/EnvironmentComponent.h b/src/Entities/Compoments/EnvironmentComponent.h index 84fd4e2f5..b080520f2 100644 --- a/src/Entities/Compoments/EnvironmentComponent.h +++ b/src/Entities/Compoments/EnvironmentComponent.h @@ -17,4 +17,4 @@ public: virtual void OnStartedDrowning(){} virtual void OnFinishedDrowning(){} -};
\ No newline at end of file +}; diff --git a/src/Entities/Compoments/InteractionComponent.h b/src/Entities/Compoments/InteractionComponent.h index bd5b7c281..b8b99de79 100644 --- a/src/Entities/Compoments/InteractionComponent.h +++ b/src/Entities/Compoments/InteractionComponent.h @@ -17,4 +17,4 @@ public: // virtual void OnPickup(){} // virtual void OnDestroy(){} -};
\ No newline at end of file +}; diff --git a/src/Entities/Compoments/ModelComponent.h b/src/Entities/Compoments/ModelComponent.h index 820ac1130..bbc4bcc21 100644 --- a/src/Entities/Compoments/ModelComponent.h +++ b/src/Entities/Compoments/ModelComponent.h @@ -15,4 +15,4 @@ public: virtual void OnCollisionWithEntity(cEntity * a_Entity){} -};
\ No newline at end of file +}; diff --git a/src/Entities/Compoments/MovementComponent.h b/src/Entities/Compoments/MovementComponent.h index dda215ade..a9896c3b0 100644 --- a/src/Entities/Compoments/MovementComponent.h +++ b/src/Entities/Compoments/MovementComponent.h @@ -9,4 +9,4 @@ protected: public: cMovementComponent(cEntity * a_Entity) : m_Self(a_Entity){} -};
\ No newline at end of file +}; |