1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-24 00:23:10 +08:00

Convert ModSearchContainer to block-scoped namespace

This commit is contained in:
Cootz 2023-05-07 15:14:49 +03:00
parent 5aca3a78da
commit 4d235105d1

View File

@ -3,10 +3,10 @@
using osu.Framework.Graphics.Containers;
namespace osu.Game.Overlays.Mods;
public partial class ModSearchContainer : SearchContainer
namespace osu.Game.Overlays.Mods
{
public partial class ModSearchContainer : SearchContainer
{
/// <summary>
/// A string that should match the <see cref="IFilterable"/> children
/// </summary>
@ -22,4 +22,5 @@ public partial class ModSearchContainer : SearchContainer
Update();
}
}
}
}