1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Fix code quality inspections

This commit is contained in:
Bartłomiej Dach 2024-06-18 08:33:02 +02:00
parent 73786a6f9f
commit 2421751419
No known key found for this signature in database

View File

@ -10,14 +10,14 @@ namespace osu.Game.Rulesets.Edit.Tools
{
public readonly string Name;
public LocalisableString TooltipText { get; init; } = default;
public LocalisableString TooltipText { get; init; }
protected HitObjectCompositionTool(string name)
{
Name = name;
}
public abstract PlacementBlueprint CreatePlacementBlueprint();
public abstract PlacementBlueprint? CreatePlacementBlueprint();
public virtual Drawable? CreateIcon() => null;