2024-01-01 01:58:29 +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.
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2024-09-23 22:36:11 +08:00
|
|
|
using osu.Game.Rulesets.Edit.Tools;
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints;
|
2024-01-01 01:58:29 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit
|
|
|
|
{
|
2024-09-23 22:36:11 +08:00
|
|
|
public partial class GridFromPointsTool : CompositionTool
|
2024-01-01 01:58:29 +08:00
|
|
|
{
|
2024-09-23 22:36:11 +08:00
|
|
|
public GridFromPointsTool()
|
|
|
|
: base("Change grid")
|
2024-01-01 01:58:29 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-09-23 22:36:11 +08:00
|
|
|
public override PlacementBlueprint CreatePlacementBlueprint() => new GridPlacementBlueprint();
|
2024-01-01 01:58:29 +08:00
|
|
|
}
|
|
|
|
}
|