using UnityEngine; // ReSharper disable once CheckNamespace namespace BlueWaterProject { public interface IDamageable { void TakeDamage(float attackerPower, Vector3? attackPos = null); void Die(); float GetCurrentHp(); } }