From 03be9725fce1015c4277d89cdaedf6fee1e14d4e Mon Sep 17 00:00:00 2001 From: Rudi Herouard Date: Mon, 20 Jan 2025 14:22:39 +0100 Subject: [PATCH] Change IsRootedAt method from internal to public --- osu.Framework/Graphics/DrawableExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Framework/Graphics/DrawableExtensions.cs b/osu.Framework/Graphics/DrawableExtensions.cs index ec61b220a..be6194ea4 100644 --- a/osu.Framework/Graphics/DrawableExtensions.cs +++ b/osu.Framework/Graphics/DrawableExtensions.cs @@ -49,7 +49,7 @@ namespace osu.Framework.Graphics /// The to be checked. /// The root to be checked against. /// Whether the drawable was rooted. - internal static bool IsRootedAt(this Drawable? drawable, Drawable root) + public static bool IsRootedAt(this Drawable? drawable, Drawable root) { if (drawable == root) return true;