Abstract base appearence and hover update from drag handles

This commit is contained in:
Salman Ahmed
2021-04-24 07:44:33 +03:00
parent 3b77d02752
commit decd8803bc
3 changed files with 116 additions and 74 deletions

View File

@ -0,0 +1,17 @@
// 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 osu.Framework.Allocation;
using osuTK;
namespace osu.Game.Screens.Edit.Compose.Components
{
public class SelectionBoxScaleHandle : SelectionBoxDragHandle
{
[BackgroundDependencyLoader]
private void load()
{
Size = new Vector2(10);
}
}
}