osu/osu.Game/Rulesets/Edit/Tools/SelectTool.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
628 B
C#
Raw Normal View History

// 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.
2022-06-17 07:37:17 +00:00
#nullable disable
2020-09-09 09:35:25 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
2020-09-09 09:35:25 +00:00
namespace osu.Game.Rulesets.Edit.Tools
{
public class SelectTool : HitObjectCompositionTool
{
public SelectTool()
: base("Select")
{
}
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.EditorSelect };
2020-09-09 09:35:25 +00:00
public override PlacementBlueprint CreatePlacementBlueprint() => null;
}
}