summaryrefslogtreecommitdiffstats
path: root/src/Entities/Compoments/AttackComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Entities/Compoments/AttackComponent.h')
-rw-r--r--src/Entities/Compoments/AttackComponent.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Entities/Compoments/AttackComponent.h b/src/Entities/Compoments/AttackComponent.h
deleted file mode 100644
index 080f764b6..000000000
--- a/src/Entities/Compoments/AttackComponent.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include "../Entity.h"
-
-class cAttackComponent
-{
-protected:
- cEntity * m_Self;
-public:
- cAttackComponent(cEntity * a_Entity) : m_Self(a_Entity){}
-
- virtual void OnAttackEntity(cEntity * a_Entity){}
-
-};