diff options
author | Samuel Barney <samjbarney@gmail.com> | 2014-08-20 16:33:58 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2014-08-20 16:33:58 +0200 |
commit | a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943 (patch) | |
tree | 70420c12ce6a90a127abd86a8078048fbe7ec418 /src/Entities/Compoments/ModelComponent.h | |
parent | Added start of new monster class (diff) | |
download | cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar.gz cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar.bz2 cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar.lz cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar.xz cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.tar.zst cuberite-a91e044ecdc96c7ffa5981cbf61ad5ad1d8eb943.zip |
Diffstat (limited to 'src/Entities/Compoments/ModelComponent.h')
-rw-r--r-- | src/Entities/Compoments/ModelComponent.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/Entities/Compoments/ModelComponent.h b/src/Entities/Compoments/ModelComponent.h deleted file mode 100644 index bbc4bcc21..000000000 --- a/src/Entities/Compoments/ModelComponent.h +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -#include "../Entity.h" - -class cModelComponent -{ -protected: - cEntity * m_Self; -public: - cModelComponent(cEntity * a_Entity) : m_Self(a_Entity){} - virtual void SpawnOn(cClientHandle & a_Client){} - virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL){} - - virtual void HandlePhysics(float a_Dt, cChunk & a_Chunk){} - virtual void OnCollisionWithEntity(cEntity * a_Entity){} - - -}; |