mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Change Metadata into a get property
This commit is contained in:
@ -10,7 +10,7 @@ namespace osu.Game.Rulesets.Edit.Checks
|
||||
{
|
||||
public class CheckBackground : Check
|
||||
{
|
||||
public override CheckMetadata Metadata() => new CheckMetadata
|
||||
public override CheckMetadata Metadata { get; } = new CheckMetadata
|
||||
(
|
||||
category: CheckCategory.Resources,
|
||||
description: "Missing background."
|
||||
|
@ -11,7 +11,7 @@ namespace osu.Game.Rulesets.Edit.Checks.Components
|
||||
/// <summary>
|
||||
/// The metadata for this check.
|
||||
/// </summary>
|
||||
public abstract CheckMetadata Metadata();
|
||||
public abstract CheckMetadata Metadata { get; }
|
||||
|
||||
/// <summary>
|
||||
/// All possible templates for issues that this check may return.
|
||||
|
Reference in New Issue
Block a user