using Decal.Interop.Filters; namespace Decal.Adapter.Wrappers; /// /// Defines the WorldObjectCollection filter for objects containing the specified name /// public class ByNameSubStringFilter : ByNameFilter { internal override void ApplyFilter(WorldIterator wi) { wi.ByNameSubstring(base.Name); } internal override void ApplyFilter(Decal.Interop.Filters.Vendor ven) { ven.ByNameSubstring(base.Name); } }