// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.Containers; namespace osu.Game.Overlays.Mods; public partial class ModSearchContainer : SearchContainer { /// /// A string that should match the children /// public string ForcedSearchTerm { get => SearchTerm; set { if (value == SearchTerm) return; SearchTerm = value; Update(); } } }