1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 01:01:18 +08:00

Remove public access modifier from interface methods

This commit is contained in:
Dean Herbert
2023-02-06 14:19:25 +09:00
Unverified
parent e4b17588f5
commit e5f62b0d2e
+2 -2
View File
@@ -39,7 +39,7 @@ namespace osu.Game.Skinning
/// <summary>
/// Reload this target from the provided skinnable information.
/// </summary>
public void Reload(SkinnableInfo[] skinnableInfo);
void Reload(SkinnableInfo[] skinnableInfo);
/// <summary>
/// Add a new skinnable component to this target.
@@ -51,6 +51,6 @@ namespace osu.Game.Skinning
/// Remove an existing skinnable component from this target.
/// </summary>
/// <param name="component">The component to remove.</param>
public void Remove(ISkinnableDrawable component);
void Remove(ISkinnableDrawable component);
}
}