using Decal.Interop.Filters; namespace Decal.Adapter.Wrappers; /// /// Defines the WorldObjectCollection filter for landscape objects /// public class ByLandscapeFilter : WorldObjectCollectionFilter { internal override void ApplyFilter(WorldIterator wi) { wi.ByLandscape(); } }