mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 10:22:56 +08:00
Remove public
access modifier from interface methods
This commit is contained in:
parent
e4b17588f5
commit
e5f62b0d2e
@ -39,7 +39,7 @@ namespace osu.Game.Skinning
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reload this target from the provided skinnable information.
|
/// Reload this target from the provided skinnable information.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void Reload(SkinnableInfo[] skinnableInfo);
|
void Reload(SkinnableInfo[] skinnableInfo);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a new skinnable component to this target.
|
/// Add a new skinnable component to this target.
|
||||||
@ -51,6 +51,6 @@ namespace osu.Game.Skinning
|
|||||||
/// Remove an existing skinnable component from this target.
|
/// Remove an existing skinnable component from this target.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="component">The component to remove.</param>
|
/// <param name="component">The component to remove.</param>
|
||||||
public void Remove(ISkinnableDrawable component);
|
void Remove(ISkinnableDrawable component);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user