1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 12:32:54 +08:00

Add xmldoc for SkinComponentsContainerLookup.Ruleset

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2023-02-20 19:48:18 +09:00 committed by GitHub
parent 5f7a6d13c3
commit 0ddda018fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,10 @@ namespace osu.Game.Skinning
/// </summary> /// </summary>
public readonly TargetArea Target; public readonly TargetArea Target;
/// <summary>
/// The ruleset for which skin components should be returned.
/// A <see langword="null"/> value means that returned components are global and should be applied for all rulesets.
/// </summary>
public readonly RulesetInfo? Ruleset; public readonly RulesetInfo? Ruleset;
public SkinComponentsContainerLookup(TargetArea target, RulesetInfo? ruleset = null) public SkinComponentsContainerLookup(TargetArea target, RulesetInfo? ruleset = null)