using UnityEngine; namespace SepCore.EnemyManager { public interface ISpawnPositionStrategy { Vector3 GetSpawnPosition(Transform player); } }