mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 16:37:26 +08:00
23 lines
658 B
C#
23 lines
658 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
using osu.Game.Screens.Edit.Components.RadioButtons;
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
{
|
|
public class HitObjectCompositionToolButton : RadioButton
|
|
{
|
|
public HitObjectCompositionTool Tool { get; }
|
|
|
|
public HitObjectCompositionToolButton(HitObjectCompositionTool tool, Action? action)
|
|
: base(tool.Name, action, tool.CreateIcon)
|
|
{
|
|
Tool = tool;
|
|
|
|
TooltipText = tool.TooltipText;
|
|
}
|
|
}
|
|
}
|