2020-01-28 14:00:45 +08:00
|
|
|
// 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.
|
|
|
|
|
2020-09-09 17:35:25 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
2020-01-28 14:00:45 +08:00
|
|
|
namespace osu.Game.Rulesets.Edit.Tools
|
|
|
|
{
|
|
|
|
public class SelectTool : HitObjectCompositionTool
|
|
|
|
{
|
|
|
|
public SelectTool()
|
|
|
|
: base("Select")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-09 17:35:25 +08:00
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.Solid.MousePointer };
|
|
|
|
|
2020-01-28 14:00:45 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => null;
|
|
|
|
}
|
|
|
|
}
|