summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Avatar/Hitbox.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Avatar/Hitbox.cs')
-rw-r--r--Assets/Scripts/Avatar/Hitbox.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Assets/Scripts/Avatar/Hitbox.cs b/Assets/Scripts/Avatar/Hitbox.cs
deleted file mode 100644
index 5fd0cecf..00000000
--- a/Assets/Scripts/Avatar/Hitbox.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-
-public class Hitbox : MonoBehaviour
-{
- [SerializeField]
- private PhysicsBox m_BoxCollider;
- public PhysicsBox Collider
- {
- get
- {
- return m_BoxCollider;
- }
- }
-
- [SerializeField]
- private MonoBehaviour m_Host ;
-
- public IInteractable Host
- {
- get
- {
- return m_Host as IInteractable;
- }
- }
-
- private void Awake()
- {
- HitManager.Instance.AddHitBox(this);
- }
-
-}