using UnityEngine; // ReSharper disable once CheckNamespace namespace BlueWaterProject { public interface IDamageable : IAiStat { public void TakeDamage(AiStat attacker, AiStat defender, Vector3? attackPos = null); } }