#if UNITY_EDITOR using UnityEngine; using System.Collections.Generic; namespace O3DWB { public interface IEntityNameMatchOperation { #region Interface Methods List GetEntitiesWithMatchingNames(List namedEntities, string nameToMatch); #endregion } } #endif