diff --git a/Assets/Scripts/Enemy/Keroco/KerocoHealth.cs b/Assets/Scripts/Enemy/Keroco/KerocoHealth.cs index 1189a15d98666baa721545b2d1273322328cac3e..6f20a5f9c14d0de9278b7b7974e056ea89bbf7e5 100644 --- a/Assets/Scripts/Enemy/Keroco/KerocoHealth.cs +++ b/Assets/Scripts/Enemy/Keroco/KerocoHealth.cs @@ -1,9 +1,9 @@ using UnityEngine; using System.Collections; +using Nightmare; -namespace Nightmare -{ - public class Keroco : MonoBehaviour + + public class KerocoHealth : MonoBehaviour { public int startingHealth = 100; public float sinkSpeed = 2.5f; @@ -17,7 +17,7 @@ namespace Nightmare CapsuleCollider capsuleCollider; EnemyMovement enemyMovement; - void Awake() + void Awake() { anim = GetComponent<Animator>(); enemyAudio = GetComponent<AudioSource>(); @@ -98,4 +98,3 @@ namespace Nightmare return currentHealth; } } -}