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