using Game.Scripts.Runtime.Data; using UnityEngine; namespace Game.Scripts.Runtime.Abstractions { public interface ISpawnRule { bool CanSpawn(EnemyDefinition definition, Vector3 position); } }